设置背景为透明

来源:互联网 发布:手机怎样发淘宝链接 编辑:程序博客网 时间:2024/06/11 05:52
三种设置透明的方法,个人比较常用1和3
1、xml中使用Android预设值

android:background="@android:color/transparent" 
例如,
 
<Button android:background="@android:color/transparent"  
 
  android:text="@+id/Button01"  
  android:layout_width="wrap_content"  
  android:layout_height="wrap_content"  />  

2、xml中使用RGB

半透明<Button android:background="#e0000000" /> 
透明<Button android:background="#00000000" /> 
 
3、java类中设置
View v = findViewById(R.id.content); 
v.getBackground().setAlpha(100); //0~255透明度值 
0 0
原创粉丝点击