Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 將android界面背景設置為黑色

將android界面背景設置為黑色

編輯:關於Android編程

將界面背景設置為黑色的幾種方法:
  • 新建項目時候 第二次next之後(不同sdk版本可能不同),Background Color項點擊可選。
  • 開發布局文件,選擇視圖查看 就是下邊二個選項卡中的第一個(Graphical),然後上邊有個
    AppTheme點擊->Theme->前三項(Theme.Black等)都可以
  • 在你最外層的layout裡邊設置 android:background="#000000"屬性
  • 在manifest中對應activity屬性中,添加下邊任意一種(設置白色同理,白色色值 #FFFFFF Theme.Light等)

    系統自帶樣式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"


    再搭個設置編輯框背景的方法
    設置編輯框樣式,就是給那個框加個背景圖片,
    給一張感受下 http://www.easyicon.net/1116240-input_icon.html下載最大的那個96px的png格式。
    下載之後改名(注意不能有大寫字母),然後copy到res文件夾下任意以drawable開頭的文件夾下,

    在layout文件中 edittext設置屬性 android:background="@drawable/text_img"


  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved