標籤:android style width http 檔案 com
在網上搜了一下,android內建theme如下:
?android:theme="@android:style/Theme.Dialog" 將一個Activity顯示為對話方塊模式
?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"
其實,只要在manifest.xml檔案中把<application>中設定為android:theme = "@android:style/Theme.Dialog"即可,效果如下: