首页 > 移动平台 > 详细

android 5.0 -- 主题

时间:2015-11-21 22:36:21      阅读:366      评论:0      收藏:0      [点我收藏+]

 

系统提供默认的三种主题样式

@android:style/Theme.Material (dark version)        
@android:style/Theme.Material.Light (light version)     
@android:style/Theme.Material.Light.DarkActionBar  

三种样式对应如下图:

技术分享

当然你也可以自己去定义主题样式

 <resources>
  <!-- inherit from the material theme -->
  <style name="AppTheme" parent="android:Theme.Material">
    <!-- Main theme colors -->
    <!--   your app branding color for the app bar -->
    <item name="android:colorPrimary">@color/primary</item>
    <!--   darker variant for the status bar and contextual app bars -->
    <item name="android:colorPrimaryDark">@color/primary_dark</item>
    <!--   theme UI controls like checkboxes and text fields -->
    <item name="android:colorAccent">@color/accent</item>
  </style>
</resources>

技术分享

如上图所示,可以对应修改指定位置的颜色来对样式进行自定义。

 

android 5.0 -- 主题

原文:http://www.cnblogs.com/androidsuperman/p/4984807.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!