我正在使用一个web视图,其中我正在添加一个图像视图。如何将此图像视图的背景设置为透明?
我试过了:
mImageview.setBackgroundResource(R.color.trans);
其中trans→<color name="trans">#00000000 </color>。
我正在使用一个web视图,其中我正在添加一个图像视图。如何将此图像视图的背景设置为透明?
我试过了:
mImageview.setBackgroundResource(R.color.trans);
其中trans→<color name="trans">#00000000 </color>。
当前回答
还有一个更简单的方法:
mComponentName.setBackgroundResource(android.R.color.transparent);
其他回答
ImageView.setBackground(R.drawable.my_background);
ImageView.setBackgroundResource(R.color.colorPrimary);
ImageView.getImageAlpha();
ImageView.setAlpha(125); // transparency
还有一个更简单的方法:
mComponentName.setBackgroundResource(android.R.color.transparent);
我遇到的另一个工作选项是设置android:background="@null"
使用RelativeLayout,其中有2个imageViews。并在顶部imageView上设置透明代码。
透明度代码:
<solid android:color="@color/white"/>
<gradient android:startColor="#40000000" android:endColor="#FFFFFFFF" android:angle="270"/>
试试这个:
#aa000000
对于透明度000000 =黑色,您可以更改这六个数字为您想要的颜色。