可以通过在AndroidManifest.xml中指定Activity的theme制定某些特性

可以通过在AndroidManifest.xml中指定Activity的theme制定某些特性
例如,半透明效果,
                        android:label="@string/activity_translucent"
                android:theme="@style/Theme.Translucent">
           
               
           

       

theme在styles.xml有如下定义,
   
注意style使用了继承了android预定义的类型android:style/Theme.Translucent"

以上是半透明效果,透明效果如下所示,

 还可以指定系统的墙纸作为Activity的背景。
   

 

你可能感兴趣的:(Android)