android 设置Button或者ImageButton的背景透明
?
Button或者ImageButton的背景设为透明或者半透明半透明<Button android:background="#e0000000" ... />
透明<Button android:background="#00000000" ... />
View v = findViewById(R.id.content);//找到你要设透明背景的layout 的idv.getBackground().setAlpha(100);//0~255透明度值?半透明<Button android:background="#e0000000" ... />
透明<Button android:background="#00000000" ... />
?
?