使activity看起来像对话框:
<activity android:theme="@android:style/Theme.Dialog">
使activity有一个透明背景:
<activity android:theme="@android:style/Theme.Translucent">
应用在/res/values/styles.xml中定义的自定义主题:
<activity android:theme="@style/CustomTheme">
使整个app应用一个主题(全部activities)在元素中添加android:theme属性:
<application android:theme="@style/CustomTheme">
更多关于创建和使用主题,详见Styles and Themes