Android theme

来源:互联网 发布:淘宝客佣金在哪里修改 编辑:程序博客网 时间:2024/05/18 10:09
android:theme="@android:style/Theme.Dialg"     对话框形式
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"
android:theme="@android:style/Theme.Translucent"   直接使用当前背景显示控件(透明状态)
android:theme="@android:style/Theme.Translucent.NotitleBar"
android:theme="@android:style/Theme.Translucent.NotitleBar.Fullscreen"
android:theme="@android:style/Theme.Panel"     本页面中间显示
android:theme="@android:style/Theme.Light.Panel"
0 0