android backgroud alpha

tongji.cnzz.com/main.php?c=flow&a=frame&siteid=1000165004#!/1391851149271/flow/trend/1/1000165004/2014-02-08/2014-02-08




设置透明效果 大概有三种


1、用android系统的透明效果
Java代码 
android:background=" @android :color/transparent" 

例如 设置按钮
Java代码 

 
  android:text="@+id/Button01"  
 
  android:id="@+id/Button01"  
 
  android:layout_width="wrap_content"  
 
  android:layout_height="wrap_content"  
 
  android:textColor="#ffffff" />  

2、用ARGB来控制
Java代码 
半透明 
透明 
 
3、设置alpha
Java代码 
View v = findViewById(R.id.content);//找到你要设透明背景的layout 的id 
v.getBackground().setAlpha(100);//0~255透明度值 

你可能感兴趣的:(android backgroud alpha)