API 21下的工具栏颜色

时间:2015-07-12 01:56:37

标签: android xml material-design

我想用21以下的api为工具栏添加颜色。

这是我的style.xml

<resources>
 <style name="AppTheme" parent="AppTheme.Base">

    </style>
    <style name="AppTheme.Base" parent="Theme.AppCompat.NoActionBar">
        <item name="colorPrimary">@color/primaryColor</item>
        <item name="colorPrimaryDark">@color/primaryColorDark</item>
        <item name="colorAccent">@color/accentColor</item>
    </style>
</resources>

和我的app_bar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#CCC">

</android.support.v7.widget.Toolbar>

像这样:http://i.imgur.com/klAMznN.png

我能不能?

0 个答案:

没有答案