theme.dialog : (圖1)activity顯示為對話方塊模式
theme.notitlebar : (圖2)不顯示應用程式標題欄
theme.notitlebar.fullscreen : (圖3)不顯示應用程式標題欄,並全屏
theme.light : (圖4)背景為白色
theme.light.notitlebar : (圖5)白色背景並無標題欄
theme.light.notitlebar.fullscreen : (圖6)白色背景,無標題欄,全屏
theme.black : (圖7)背景黑色
theme.black.notitlebar : (圖8)黑色背景並無標題欄
theme.black.notitlebar.fullscreen : (圖9)黑色背景,無標題欄,全屏
theme.wall***** : (圖10)用系統桌面為應用程式背景
theme.wall*****.notitlebar : (圖11) 用系統桌面為應用程式背景,且無標題欄
theme.wall*****.notitlebar.fullscreen : (圖12)用系統桌面為應用程式背景,無標題欄,全屏
theme.translucent : (圖13)透明背景
theme.translucent.notitlebar : (圖14)透明背景並無標題
theme.translucent.notitlebar.fullscreen : (圖15)透明背景並無標題,全屏
theme.panel : (圖16)面板風格顯示
theme.light.panel : (圖17)平板風格顯示
樣式對應效果圖
圖1(theme.dialog)
圖2(theme.notitlebar)
圖3(theme.notitlebar.fullscreen)
圖4(theme.light)
圖5(theme.light.notitlebar)
圖6(theme.light.notitlebar.fullscreen)
圖7(theme.black)
圖8(theme.black.notitlebar)
圖9(theme.black.notitlebar.fullscreen)
圖10(theme.wall*****)
圖11(theme.wall*****.notitlebar)
圖12(theme.wall*****.notitlebar.fullscreen)
圖13(theme.translucent)
頁面元素:1個按鈕
圖14(theme.translucent.notitlebar)
頁面元素:1個按鈕
圖15(theme.translucent.notitlebar.fullscreen)
頁面元素:1個按鈕
顯示按鈕顯示在最上面,因為是透明的,所以被外面的狀態列擋住了上半部分
圖16(theme.panel)
頁面元素:1個按鈕
圖17(theme.light.panel)
頁面元素:1個按鈕
android系統自帶樣式使用方法:
將樣式**放置在應用的androidmanifest.xml即可。
注意格式:android:theme="@android:style/這裡寫樣式** "
參考如下:
xml**
xmlversion="1.0"
encoding="utf-8"
?>
<
manifest
xmlns:android=""
package="com.zhouzijing.android"
android:versioncode="1"
android:versionname="1.0"
>
<
uses-sdk
android:minsdkversion="8"
/>
<
android:icon="@drawable/icon"
>
<
activity
android:name=".demo2"
android:theme="@android:style/theme.dialog"
>
<
intent-filter
>
<
action
android:name="android.intent.action.main"
/>
<
category
android:name="android.intent.category.launcher"
/>
intent-filter
>
activity
>
>
manifest
>
Android自帶樣式
android theme android style theme.dialog 將乙個activity顯示為能話框模式 android theme android style theme.notitlebar 不顯示應用程式標題欄 android theme android style theme...
android 自帶樣式
簡單介紹一下android開發中系統自帶的一些樣式 android theme android style theme.dialog 將乙個activity顯示為對話方塊模式 android theme android style theme.notitlebar 不顯示應用程式標題欄 androi...
Android系統自帶樣式
android theme android style theme.dialog activity顯示為對話方塊模式 android theme android style theme.notitlebar 不顯示應用程式標題欄 android theme android style theme.n...