赞
踩
1,设置应用的targetVersion和minSdkVersion最低为21
2,在values目录下的style资源文件中,创建一个style,让其继承自android.Theme.Material
3,在AndroidManefest中指定应用的主题或者Activity的主题为我们设定的样式
Google官方提供了3中配色风格:
1,黑色主题,Theme.MaterialDesign
2,亮色主题,Theme.MaterialDesign.Light
3,明亮主题黑色,Theme.MaterialDesign.Light.DarkActionBar
也可以继承系统提供的MaterialDesign样式,进行配色,
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<!--电池条,状态栏颜色,会被statusBarColor效果覆盖-->
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<!--<item name="android:colorPrimaryDark">@color/red</item>-->
<!--电池条
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。