android设置背景图片透明
设置Activiyt为透明可以在Activity中引用系统透明主题android:theme="@android:style/Theme.Translucent"
设置背景图片透明度:
LinearLayout linearLayout = (LinearLayout) lock.findViewById(R.id.layout); linearLayout.getBackground().setAlpha(255);//0~255透明度值
设置Button等背景图片透明度,类似上例
直接设置Button等控件的透明图可以在xml控件中直接添加属性透明:android:background="#00000000"
半透明:
android:background="#e0000000"