android 设置Button或者ImageButton的背景透明
透明<Button android:background="#00000000" ... />
?
View v = findViewById(R.id.content);//找到你要设透明背景的layout 的id v.getBackground().setAlpha(100);//0~255透明度值?
发布时间: 2013-11-08 17:52:01 作者: rapoo
android 设置Button或者ImageButton的背景透明
透明<Button android:background="#00000000" ... />
?
View v = findViewById(R.id.content);//找到你要设透明背景的layout 的id v.getBackground().setAlpha(100);//0~255透明度值?