美文网首页Android_MaterialDesign
MaterialDesign系列文章(二)Theme主题设置

MaterialDesign系列文章(二)Theme主题设置

作者: 笔墨Android | 来源:发表于2017-11-06 23:31 被阅读71次

    不怕跌倒,所以飞翔

    这是我写的第一篇关于MaterialDesign的文章,希望自己能坚持下来,完成整个系列!!!什么事情都在于坚持...

    Theme 主题设置

    • @android:style/Theme.Material
    • @android:style/Theme.Material.Light
    • @android:style/Theme.Material.Light.DarkActionBar

    我们可以在values-21中的styles.xml文件中继承这个主题,然后定制一些属性

        <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
    
            <!--添加的一些属性-->
            <item name="textColorPrimary">@android:color/white</item><!--标题栏文字颜色-->
            <item name="windowNoTitle">true</item><!--去掉标题栏-->
            <item name="windowActionBar">false</item><!--不显示Actionbar-->
        </style>
    

    但是为了兼容低版本我们要想一些办法才可以的,主要是在4.4及以前的版本要使用** <item name="android:windowNoTitle">true</item>**来去掉标题栏


    这一系列文章的地址,希望对大家有帮助

    项目地址

    相关文章

      网友评论

        本文标题:MaterialDesign系列文章(二)Theme主题设置

        本文链接:https://www.haomeiwen.com/subject/ylgrmxtx.html