MaterialDesign系列文章(二)Theme主题设置
2017-11-06 本文已影响71人
笔墨Android
这是我写的第一篇关于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>**来去掉标题栏