android设置Activity背景透明

1.如果设置成完全透明

在Manifest.xml中给要设置成背景透明的acticity增加属性:android:theme="@android:style/Theme.Translucent" 

2.如果想把背景设置成某个颜色

(1)在/value目录下增加文件color.xml



#50ffffff

(2)在/value目录下增加文件style.xml





(3)在Manifest.xml中给要设置成背景透明的acticity增加属性:android:theme="@style/Transparent

这样就可以了

你可能感兴趣的:(Android开发)