首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

android 设置Button可能ImageButton的背景透明

2013-11-09 
android 设置Button或者ImageButton的背景透明 Button或者ImageButton的背景设为透明或者半透明  半透明

android 设置Button或者ImageButton的背景透明

 Button或者ImageButton的背景设为透明或者半透明

  半透明< Button android:background="#e0000000" ... />

  透明< Button android:background="#00000000" ... />

?

?

  颜色和不透明度 (alpha) 值以十六进制表示法表示。任何一种颜色的值范围都是 0 到 255(00 到 ff)。对于 alpha,00 表示完全透明,ff 表示完全不透明。表达式顺序是“aabbggrr”,其中“aa=alpha”(00 到 ff);“bb=blue”(00 到 ff);“gg=green”(00 到 ff);“rr=red”(00 到 ff)。例如,如果您希望对某叠加层应用不透明度为 50% 的蓝色,则应指定以下值:7fff0000

 

设置背景图片透明度(超简单)

  Java代码

  View v = findViewById(R.id.content);//找到你要设透明背景的layout 的id

  v.getBackground().setAlpha(100);//0~255透明度值

热点排行