•android:theme=“@android :style/Theme.Dialog” 将一个Activity显示为能话框模式
•android:theme=“@android :style/Theme.NoTitleBar” 不显示应用程序标题栏
•android:theme=“@android :style/Theme.NoTitleBar.Fullscreen” 不显示应用程序标题栏,并全屏
•android:theme=“Theme.Light” 背景为白色
•android:theme=“Theme.Light.NoTitleBar” 白色背景并无标题栏
•android:theme=“Theme.Light.NoTitleBar.Fullscreen” 白色背景,无标题栏,全屏
•android:theme=“Theme.Black” 背景黑色
•android:theme=“Theme.Black.NoTitleBar” 黑色背景并无标题栏
•android:theme=“Theme.Black.NoTitleBar.Fullscreen” 黑色背景,无标题栏,全屏
•android:theme=“Theme.Wallpaper” 用系统桌面为应用程序背景
•android:theme=“Theme.Wallpaper.NoTitleBar” 用系统桌面为应用程序背景,且无标题栏
•android:theme=“Theme.Wallpaper.NoTitleBar.Fullscreen” 用系统桌面为应用程序背景,无标题栏,全屏
•android:theme=“Translucent” 半透明
•android:theme=“Theme.Translucent.NoTitleBar” 半透明、无标题栏
•android:theme=“Theme.Translucent.NoTitleBar.Fullscreen” 半透明、无标题栏、全屏
•android:theme=“Theme.Panel”
•android:theme=“Theme.Light.Panel”

应用Application范围
在AndroidManifest.xml中的application节点中设置theme属性,主题theme应用到整个应用程序中。
<application

Android:icon=”@drawable/icon”Android:icon=”@string/app_name”Android:icon=”@android:style/ Theme.Black.NoTitleBar”>

活动Activity范围
使用java代码或者在AndroidManifest.xml中对活动Activity的主题进行设置,主题仅应用到当前活动中。
在AndroidMainifest.xml设置方法:
android:name=“.About”
android:label=“@string/app_name”
android:theme=“@android :style/ Theme.Black.NoTitleBar” >

使用java代码进行设置,在当前活动Activity的onCreate中进行设置:
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setTheme(android.R.style.Theme_Translucent_NoTitleBar);
setContentView(R.layout.main);
}

更多相关文章

  1. Android:EditText 多…
  2. Android(安卓)背景图片平铺
  3. android:使用fragment实现tab切换
  4. android圆形进度条颜色的设置
  5. 第5章 Android常见XML属性解析-更新中
  6. Android(安卓)4.0.3 源代码结构分析(一)
  7. android系统自带的主题与样式(theme and style)
  8. Android:theme
  9. android:theme大全

随机推荐

  1. Android 设计的几处硬伤
  2. Android 插件安装 和MyEclipse的Windows
  3. 【Android自助餐】Handler消息机制完全解
  4. [置顶] Android如何选择HttpURLConnectio
  5. 构建Android的交叉编译器、用NDK编译移植
  6. Android自定义权限
  7. Android UI线程和非UI线程
  8. 深度解析Android中字体设置
  9. 基于Android官方Paging Library的Recycle
  10. [置顶] Android(安卓)编码规范