主题Theme就是用来设置界面UI风格,可以设置整个应用或者某个活动Activity的界面风格。在Android SDK中内置了下面的Theme,可以按标题栏Title Bar和状态栏Status Bar是否可见来分类:


•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范围或者某个活动Activity范围中。

应用Application范围

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


活动Activity范围

使用java代码或者在AndroidManifest.xml中对活动Activity的主题进行设置,主题仅应用到当前活动中。

在AndroidMainifest.xml设置方法:


使用java代码进行设置,在当前活动Activity的onCreate中进行设置:

@Overridepublic void onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);setTheme(android.R.style.Theme_Translucent_NoTitleBar);setContentView(R.layout.main);}



更多相关文章

  1. Android4.4支持使用DevTools对原生Android应用程序WebViews内容
  2. Android 启动应用程序方式
  3. 【转】Android背景选择器Selector详解
  4. Android应用程序启动过程源代码分析(1)
  5. 我的Android 4 学习系列之创建应用程序和Activity:Manifest、Appl
  6. android设置背景色为透明
  7. Android 应用程序中使用 Internet 数据(XML、JSON 和 protocol bu
  8. PHP开发Android应用程序

随机推荐

  1. YUV420P、YUV420SP、NV12、NV21和RGB互相
  2. Android学习笔记(四四):第三方Java库的使用
  3. Android(安卓)轻松实现语音朗读
  4. Android用户界面设计:基本按钮
  5. Android中主题与样式
  6. Android应用程序注册广播接收器(registerR
  7. Android位图操作
  8. android 布局中 layout_gravity、gravity
  9. Android(安卓)Layout布局文件里的android
  10. Static interface methods are only supp