Android應用介面主題Theme使用方法

2021-07-22 11:49:05 字數 1479 閱讀 6628

主題theme就是用來設定介面ui風格,可以設定整個應用或者某個活動activity的介面風格。在android sdk中內建了下面的theme,可以按標題欄title bar和狀態列status bar是否可見來分類:

[html]view plain

copy

print?

•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.wall*****"

用系統桌面為應用程式背景  

•android:theme

="theme.wall*****.notitlebar"

用系統桌面為應用程式背景,且無標題欄  

•android:theme

="theme.wall*****.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"

android應用介面主題Theme使用方法

android theme theme.light 背景為白色 android theme theme.light.notitlebar 白色背景並且沒有標題欄 android theme theme.light.notitlebar.fullscreen 白色背景 無標題欄 全屏 android ...

Android 應用介面設計

一 尺寸及解析度 android介面尺寸 480 800 720 1280 1080 1920。單位 畫素 android比iphone的寸尺多了很多套,建議取用720 1280這個尺寸,這個尺寸720 1280中顯示完美,在1080 1920中看起來比較清晰,切圖後的檔案大小也適中,應用的記憶體消...

android主題設定

當你設計你的程式的時候,你可以用風格和主題來統一格式化各種螢幕和ui元素。風格是乙個包含一種或者多種格式化屬性的集合,你可以將其用為乙個單位用在布局xml單個元素當中。比如,你可以定義一種風格來定義文字的字型大小大小和顏色,然後將其用在view元素的乙個特定的例項。主題是乙個包含一種或者多種格式化屬...