android - How to change the Overflow icon to white in Action bar? -
hello can 1 me in how change overflow icon white colour have tried lot not coming here code can 1 me. appreciated. here code think minor mistake i'am unable find mistake please me.
<resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="mytheme" parent="@android:style/theme.holo.light"> <item name="android:actionbarstyle">@style/myactionbar</item> <item name="android:textappearance">@style/mytheme.actionbar.text</item> </style> <style name="myactionbar" parent="@android:style/widget.holo.light.actionbar.solid"> <item name="android:background">#336699</item> <item name="android:actionoverflowbuttonstyle">@style/mytheme.actionbar.overflow</item> </style> <style name="mytheme.actionbar.overflow" parent="@android:style/widget.holo.actionbutton.overflow"> <item name="android:src">@drawable/menu</item> </style> <style name="mytheme.actionbar.text" parent="@android:style/textappearance"> <item name="android:textcolor">#ffffff</item> <item name="android:textsize">25dp</item> </style> <style name="mytheme" parent="@android:style/theme.holo.light"> <item name="android:actionbarstyle">@style/mytheme.actionbar</item> <item name="android:actionmenutextcolor">#ffffff</item> </style> <style name="mytheme.actionbar" parent="@android:style/widget.holo.light.actionbar"> <item name="android:background">#336699</item> <item name="android:actionoverflowbuttonstyle">@style/mytheme.actionbar.overflow</item> <item name="android:titletextstyle">@style/mytheme.actionbar.text</item> </style> <style name="mytheme.actionbar.overflow" parent="@android:style/widget.holo.actionbutton.overflow"> <item name="android:src">@drawable/menu</item> </style> <style name="mytheme.actionbar.text" parent="@android:style/textappearance"> <item name="android:textsize">23dip</item> <item name="android:fontfamily">sans-serif-condensed</item> <item name="android:textcolor">#ffffff</item> </style> </resources>
make theme dark:
<style name="mytheme" parent="@android:style/theme.holo.dark"> or can change actionbar theme instead:
<style name="mytheme" parent="@android:style/theme.holo.light.darkactionbar">
Comments
Post a Comment