就是上图那个按钮
认证高级PHP讲师
設定圖示
預設情況下你應該使用的是style.xml中的AppTheme主题(这个可以在AndroidManifest.xml中看出來)。假設是這樣,那麼你可以透過以下方法改變 drawer 按鈕的顏色:
style.xml
AppTheme
AndroidManifest.xml
進入style.xml;
增加一種繼承自Widget.AppCompat.DrawerArrowToggle的style,这里叫做"DrawerArrowStyle"。在里面加上你想要的颜色,这里比如@color/colorBlue;
Widget.AppCompat.DrawerArrowToggle
@color/colorBlue
在 style "AppTheme" 中增加一行名為 drawerArrowStyle 的這種 style。
這樣一來,style 中便有以下兩項:
<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/colorBlue</item> </style>
再運行你就看到結果了。
設定圖示
預設情況下你應該使用的是
style.xml
中的AppTheme
主题(这个可以在AndroidManifest.xml
中看出來)。假設是這樣,那麼你可以透過以下方法改變 drawer 按鈕的顏色:進入
style.xml
;增加一種繼承自
Widget.AppCompat.DrawerArrowToggle
的style,这里叫做"DrawerArrowStyle"。在里面加上你想要的颜色,这里比如@color/colorBlue
;在 style "AppTheme" 中增加一行名為 drawerArrowStyle 的這種 style。
這樣一來,style 中便有以下兩項:
再運行你就看到結果了。