您的位置:首页 > Web前端 > CSS

Material Design之主题样式

2016-05-04 14:15 519 查看
中文版:http://wiki.jikexueyuan.com/project/material-design/

英文版:https://www.google.com/design/spec/material-design/introduction.html

@color/primary

@color/primary_dark

@color/accent

" data-snippet-id="ext.3bfddf8e29e705b10d07e652b949a8b0" data-snippet-saved="false" data-codota-status="done">[code]<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>


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Material Design Android