我正在使用一个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中添加以下代码,您可以设置任何布局、任何视图或任何组件的背景透明:
android:background="@android:color/transparent"
其他回答
你也可以使用View.setAlpha(float)来精确地改变可见性。
0是透明的,1完全可见。;)
已经有一个预定义的常量。使用Color.TRANSPARENT。
Android已经内置了一个透明的:R.color.transparent。http://developer.android.com/reference/android/R.color.html#transparent
但是我认为你可能想要使你放在WebView中的图像的背景透明,例如,使用透明的PNG,而不是ImageView背景。如果实际的图像不是完全透明的,那么ImageView背景就不能通过它被看到。
还有一个更简单的方法:
mComponentName.setBackgroundResource(android.R.color.transparent);
在Android Studio中,使用内置工具调整颜色和不透明度非常简单: