我有LinearLayout,其中一个属性是android:background =“@ drawable / bgImg” 我想创建透明的背景。有人对这个问题有任何线索吗? 感谢
答案 0 :(得分:2)
如果您只是想让布局透明,请使用 机器人:背景="#00000000"
但是如果你想使应用程序透明(app不占用的区域将是透明的)在manifest.xml中添加样式,如下所示
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
答案 1 :(得分:0)
只需从android:background="@drawable/bgImg"
声明中删除LinearLayout
attr。