可以通过在AndroidManifest.xml中指定Activity的theme制定某些特性
例如,半透明效果,
android:label="@string/activity_translucent"
android:theme="@style/Theme.Translucent">
theme在styles.xml有如下定义,
@drawable/translucent_background
true
#fff
注意style使用了继承了android预定义的类型android:style/Theme.Translucent"
以上是半透明效果,透明效果如下所示,
true
@android:style/Animation.Translucent
@drawable/transparent_background
true
#fff
还可以指定系统的墙纸作为Activity的背景。