Activity样式android:theme=“*”

来源:互联网 发布:物流软件系统公司 编辑:程序博客网 时间:2024/05/17 14:25
android:theme="@android:style/Theme.Dialog"//变成对话框形式        android:theme="@android:style/Theme.NoTitleBar"//没有ActionBar        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.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"

0 0