2017-02-22 137 views
0

我已經集成了一個工具欄,主要活動,現在我想改變圖標Berger和項目菜單的背景色的顏色:改變顏色爲Android的工具欄

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" android:layout_height="wrap_content" 
    android:id="@+id/toolbar" 
    android:fitsSystemWindows="true" 
    android:theme="@style/toolbar" 
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 

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

和樣式文件是:

<resources> 

    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> 
     <item name="colorPrimary">@color/colorPrimary</item> 
     <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
     <item name="colorAccent">@color/colorAccent</item> 
    </style> 
</resources> 
+0

的可能的複製【如何改變材料宮漢堡包圖標的顏色點擊導航抽屜](http://stackoverflow.com/questions/31870132/how-to-change-color-of-hamburger-icon-in-material-design-navigation-drawer) –

回答

3

嘗試使用這樣的:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/toolbar" 
    android:fitsSystemWindows="true" 
    app:theme="@style/backArrowTheme" 
    app:popupTheme="@style/AppTheme" 
    >  
</android.support.v7.widget.Toolbar> 


<style name="backArrowTheme" parent="AppTheme"> 
    <item name="android:textColorSecondary">Hexcode of color</item> 
</style> 
+0

工作好,豎起大拇指, 其他請把它用於背景菜單項也是可能的 –

相關問題