Navigation drawer change color

前端 未结 7 651
慢半拍i
慢半拍i 2020-12-19 15:21

I am using Navigation drawer using this example. I want just change blue color to orange color how could I do this? I mean change listview selector color, actionbar selctor

7条回答
  •  鱼传尺愫
    2020-12-19 15:33

    Use Selector to achieve this. You can use either @drawable or @color.

    item android:drawable="@drawable/list_item_bg_pressed" android:state_pressed="true"/>
    
    item android:drawable="@drawable/list_item_bg_normal" android:state_activated="false"/>
    
    item android:drawable="@drawable/list_item_bg_selected" android:state_activated="true"/
    

提交回复
热议问题