我正在使用一个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中设置背景属性为任意颜色,白色(#FFFFFF)阴影或黑色(#000000)阴影。如果你想要透明,只需在实际的哈希码前加上80:
#80000000
这将改变任何颜色,你想要一个透明的。:)
其他回答
尝试使用下面的代码。它将帮助你完全或更多。
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:这一行代码是为你的背景风格,就像一些特殊的或不同的东西为你的目的。你也可以用这个。
在XML中设置背景属性为任意颜色,白色(#FFFFFF)阴影或黑色(#000000)阴影。如果你想要透明,只需在实际的哈希码前加上80:
#80000000
这将改变任何颜色,你想要一个透明的。:)
如果你使用一个可绘制的XML图像,你可以使它透明如下图所示,或者你可以使用一个颜色代码:
<color name="black">#99000000</color>
ImageView.setBackground(R.drawable.my_background);
ImageView.setBackgroundResource(R.color.colorPrimary);
ImageView.getImageAlpha();
ImageView.setAlpha(125); // transparency
已经有一个预定义的常量。使用Color.TRANSPARENT。