我正在使用一个web视图,其中我正在添加一个图像视图。如何将此图像视图的背景设置为透明?
我试过了:
mImageview.setBackgroundResource(R.color.trans);
其中trans→<color name="trans">#00000000 </color>。
我正在使用一个web视图,其中我正在添加一个图像视图。如何将此图像视图的背景设置为透明?
我试过了:
mImageview.setBackgroundResource(R.color.trans);
其中trans→<color name="trans">#00000000 </color>。
当前回答
在XML文件中,设置属性“Alpha”
如
android:alpha="0.0" // for transparent
android:alpha="1.0" // for opaque
您可以给出十进制的0.0到1.0之间的任何值来应用所需的透明度。例如,0.5透明度对于禁用组件是理想的
其他回答
将百分比转换为十六进制使用任何在线工具&而不是简单地添加在前面的颜色值
例如:使用https://www.joshuamiron.com/percent-to-hex-converter
80%的不透明度
<color name="opaque_80_percent">#CC000000</color>
试试这个:
#aa000000
对于透明度000000 =黑色,您可以更改这六个数字为您想要的颜色。
或者,作为替代,用下面的代码解析资源ID:
mComponentName.setBackgroundColor(getResources().getColor(android.R.color.transparent));
尝试使用下面的代码。它将帮助你完全或更多。
A .xml file designed to use this code to set background color: android:background="#000000" or android:background="#FFFFFF" Or you can set it programmatically as well. Also you can use this code programmatically: image.setBackgroundDrawable(getResources().getDrawable( R.drawable.llabackground)); Also this code for setting the background color as well programmatically: image.setBackgroundColor(Color.parseColor("#FFFFFF")); This code for the same programmatically: image.setBackgroundColor(getResources().getColor(Color.WHITE));
颜色取决于你想要使用哪种颜色的透明。主要使用白色或#FFFFFF颜色。
关于R.drawable.llabackground:这一行代码是为你的背景风格,就像一些特殊的或不同的东西为你的目的。你也可以用这个。
在Android Studio中,使用内置工具调整颜色和不透明度非常简单: