Android系统中预设了的一些主题模式

时间:2022-11-18 03:29:08

将一个Activity显示为对话框模式

android:theme=”@android:style/Theme.Dialog”

不显示应用程序标题栏

android:theme=”@android:style/Theme.NoTitleBar”

不显示应用程序标题栏,且全屏显示该Activity

android:theme=”@android:style/Theme.NoTitleBar.Fullscreen”

将Activity的背景设置为白色

android:theme=”@android:style/Theme.Light”

将Activity的背景设置为白色,且不显示应用程序标题栏

android:theme=”@android:style/Theme.Light.NoTitleBar”

将Activity的背景设置为白色,不显示应用程序标题栏,且全屏显示

android:theme=”@android:style/Theme.Light.NoTitleBar.Fullscreen”

将Activity的背景设置为黑色

android:theme=”@android:style/Theme.Black”

将Activity的背景设置为黑色,且不显示应用程序标题栏

android:theme=”@android:style/Theme.Black.NoTitleBar”,

将Activity的背景设置为黑色,不显示应用程序标题栏,且全屏显示该Activity

android:theme=”@android:style/Theme.Black.NoTitleBar.Fullscreen”

以系统桌面做为Activity的背景

android:theme=”@android:style/Theme.Wallpaper”,

以系统桌面做为Activity的背景,且不显示应用程序标题栏

android:theme=”@android:style/Theme.Wallpaper.NoTitleBar”,

以系统桌面做为Activity的背景,不显示应用程序标题栏,且全屏显示该Activity

android:theme=”@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen”,