• Android设置布局背景为白色的三种方法


    一、在xml文件里可以直接设置:
     
    android:background="#ffffff"
    其他颜色可以看这里;http://blog.csdn.net/yanzi1225627/article/details/8581270
     
    二、在java文件里设置:
     
    LinearLayout myLayout = () findViewById(R.id.linearLayout1);
    myLayout.setBackgroundColor(Color.WHITE);
    三、在AndroidManifest.xml里利用android:theme来设置,这个命令还是很强大的,如下所示:
    theme的设置 可以设置为系统自带的格式,也可以自定义格式。
     
    A: 系统自带格式
     
       @android:style/Theme.Black  //背景黑色-有标题-非全屏
       @android:style/Theme.Black.NoTitleBar //背景黑色-无标题-非全屏
       @android:style/Theme.Black.NoTitleBar.Fullscreen //背景黑色-无标题-全屏显示
       @android:style/Theme.Dialog //对话框显示
       @android:style/Theme.InputMethod
     
       @android:style/Theme.Light    //背景白色-有标题-非全屏
       @android:style/Theme.Light.NoTitleBar //背景白色-无标题-非全屏
       @android:style/Theme.Light.NoTitleBar.Fullscreen //背景白色-无标题-全屏显示
     
       @android:style/Theme.Light.Panel
       @android:style/Theme.Light.WallpaperSettings //背景透明
       @android:style/Theme.NoDisplay
     
       @android:style/Theme.Translucent.NoTitleBar.Fullscreen //半透明、无标题栏、全屏
     
       @android:style/Theme.Wallpaper.NoTitleBar.Fullscreen
     
    可以在单个Activity里设置,也可以在applicaiton里全局设置。比如:
     
    <activity android:screenOrientation="portrait" android:name=".ui.RegisterActivity" android:theme="@android:style/Theme.NoTitleBar"></activity>
     
    B:也可以自定义
     
         在activity里加入 android:theme="@style/MyTitleBar" 再在 style.xml里加入
     
       <style name="MyTitleBar" parent="android:Theme">
            <item name="android:windowTitleSize">50dip</item>
     
             <item name="android:windowTitleBackgroundStyle">@style/MyTitleBackground</item>
            <item name="android:windowTitleStyle">@style/WindowTitle</item>
      </style>
     
     <!-- 自定义标题栏背景图 -->
      <style name="MyTitleBackground" parent="android:TextAppearance.WindowTitle">
       <item name="android:background">@drawable/bg_topbar</item>
      </style>
      <style name="WindowTitle" parent="android:TextAppearance.WindowTitle">
       <item name="android:singleLine">true</item>
     
      </style>
     
    这里的parent是继承于android:Theme,所以在下面的样式里,只能是window开头的样式才起作用,所有样式请参考sdkdocs eferenceandroidR.attr.html
     
    也可以设置windowTitleBackgroundStyle 为@style/MyTitleBackground,这样就可以在MyTitleBackground里,设置背景图。
    Keep it simple!
    作者:N3verL4nd
    知识共享,欢迎转载。
  • 相关阅读:
    【CANoe基础】CANoe常用操作
    ZedGraph控件横纵坐标显示中文名(转)
    Winforn中设置ZedGraph曲线图的属性、坐标轴属性、刻度属性(转)
    c# 访问sqlite资源
    混合模式程序集是针对“v2.0.50727”版的运行时生成的,在没有配置其他信息的情况下,无法在 4.0 运行时中加载该程序集。
    ABP框架资源
    vue新建项目一直在downloading template转,最后超时
    vscode(实验)--ABP框架 .net core 版本的安装与运行(vue模板)(转)
    安装-打开-运行-ABP框架(asp.net core 2.X+Vue)运行前端(转)
    VSCode打开Visual Studio的ABP框架项目(转)
  • 原文地址:https://www.cnblogs.com/lgh1992314/p/5834767.html
Copyright © 2020-2023  润新知