android:theme="@android:style/theme.dialog" 將乙個activity顯示為對話方塊模式
•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.wall*****" 用系統桌面為應用程式背景
•android:theme="@android:style/theme.wall*****.notitlebar" 用系統桌面為應用程式背景,且無標題欄
•android:theme="@android:style/theme.wall*****.notitlebar.fullscreen" 用系統桌面為應用程式背景,無標題欄,全屏
•android:theme="@android:style/translucent" 半透明效果
•android:theme="@android:style/theme.translucent.notitlebar" 半透明並無標題欄
•android:theme="@android:style/theme.translucent.notitlebar.fullscreen" 半透明效果,無標題欄,全屏
•android:theme="@android:style/theme.panel"
Android風格與預定義主題
主題theme就是用來設定介面ui風格,可以設定整個應用或者某個活動activity的介面風格。在android sdk中內建了下面的theme,可以按標題欄title bar和狀態列status bar是否可見來分類 html view plain copy print?android theme...
Android自定義Activity主題
最近做到乙個功能,需要彈窗的效果,但是彈窗用起來實在沒有activity 方便,可擴充套件性太小了,於是只好用 activity。但問題又來了,由於需要顯示的內容並不多,無法佔滿整個activity 而activity 預設的大小是全屏,導致視覺效果大大受損。那麼我們能不能想辦法使得activity...
Android開發23 樣式和主題
一 基本概念 作用和網頁開發中的css是一樣的。樣式用在單個控制項上,主題應用在整個應用或乙個或多個activity上。二 例項 在res values資料夾下建立style.xml檔案,該檔案中體現了樣式的繼承。樣式的覆蓋和css一樣,也是就近原則。xmlversion 1.0 encoding ...