您的位置:首页 > 移动开发 > Android开发

android中的主题Theme

2013-03-28 09:53 260 查看
android以及为我们定义好了一些theme,需要是我们直接可以拿来使用。常用的Theme通常如下:

android:theme="@android:style/Theme.Dialog"将一个activity显示为对话框模式

android:theme="@android:style/Theme.NoTitleBar"不显示应用程序标题栏

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"不显示应用程序标题栏,并全屏

android:theme="@android:style/Theme.light"背景为白色

android:theme="@android:style/Theme.light.NoTitleBar" 白色背景,无标题栏

android:theme="@android:style/Theme.light.NoTitleBar.Fullscreen" 白色背景,无标题栏,全屏

android:theme="@android:style/Theme.Black"背景为黑色

android:theme="@android:style/Theme.Black.NoTitleBar" 黑色背景,无标题栏

android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" 黑色背景,无标题栏,全屏

android:theme="@android:style/Theme.Wallpaper"用系统桌面为应用程序背景

android:theme="@android:style/Theme.Wallpaper.NoTitleBar" 用系统桌面为应用程序背景,无标题栏

android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen" 用系统桌面为应用程序背景,无标题栏,全屏

@表示可以引用的资源在项目中定义的

?表示可以引用的资源在当前的Theme中
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: