Android Theme

来源:互联网 发布:淘宝卖京东e卡 骗局 编辑:程序博客网 时间:2024/05/18 11:23
//Activity弹出窗显示      android:theme="@android:style/Theme.Dialog"     //不显示TitleBar      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"
      

0 0