在我的應用程序中,我使用操作欄和導航抽屜。操作欄中有一個用於打開和關閉導航抽屜的按鈕。我想將其顏色更改爲紅色。我怎麼做?更改抽屜式導航按鈕(後退按鈕)的顏色?
2
A
回答
1
你必須設置你的應用程序主要顏色以下材料主題: (official documentation)
RES /價值/ colors.xml
<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>
另一個方法是自己生成圖標:Toolbar Navigation Hamburger Icon missing
0
解決這個Appcombat v7 Toolbar with drawer changing colors,
做你的主題風格以下幾點:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
...
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
</style>
<style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">@color/your_red_color</item>
</style>
相關問題
- 1. 導航抽屜後退按鈕Xamarin
- 2. 導航抽屜後退按鈕
- 3. 導航欄後退按鈕顏色
- 4. 如何更改導航欄中的後退按鈕顏色?
- 5. 在xamarin中更改導航欄後退按鈕顏色android
- 6. 更改UINavigationController後退按鈕的顏色
- 7. Android - 導航抽屜式按鈕
- 8. 更改導航欄的按鈕顏色
- 9. 導航抽屜後退按鈕單擊Android中的偵聽器
- 10. 支持導航抽屜中的後退按鈕
- 11. 導航抽屜後退按鈕到主分段
- 12. 當按下後退按鈕時更新導航抽屜(使用DrawerLayout)
- 13. Android導航抽屜中的Share按鈕
- 14. 打開導航按鈕的抽屜
- 15. 添加按鈕,導航抽屜片段
- 16. 導航抽屜切換按鈕
- 17. Android導航抽屜激活帶按鈕
- 18. 導航按鈕在轉換後將顏色更改爲灰色
- 19. 如何將導航欄UIBarButtonItem按鈕更改爲導航欄後退按鈕?
- 20. 從菜單抽屜更改導航欄按鈕文本
- 21. 更改UIPopoverController顏色(和後退按鈕顏色)
- 22. 如何工具欄上使用後退按鈕滑動抽屜式導航
- 23. IOS 5如何更改導航欄中後退按鈕的顏色?
- 24. 設置工具欄的顏色和導航欄後退按鈕
- 25. 通過更改按鈕樣式更改按鈕顏色
- 26. 更改顏色的按鈕
- 27. iOS:更改後退按鈕的色調顏色?
- 28. 更改引導按鈕的顏色
- 29. 更改引導按鈕的顏色
- 30. iOS - 導航欄後退按鈕顏色很低
變化的主要顏色https://developer.android.com/training/material/theme.html#ColorPalette –
您可以直接更改可繪製圖像http://stackoverflow.com/questions/18816418/how-do-i-change-the-color-of-actionbars-up-arrow –
謝謝,Hugo Gresse。我不能相信這是這麼簡單:) – Egis