android - actionBar change MenuItem title color and default icon group -


i have menu:

<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app_name="http://schemas.android.com/apk/res-auto">  <item android:id="@+id/menu_title"     android:title="@string/details_title"     app_name:showasaction="always" />  <group android:id="@+id/options"     app_name:showasaction="ifroom">      <item android:id="@+id/option1"           android:title="@string/title1" />     <item android:id="@+id/option2"           android:title="@string/title2" /> </group> 

my default style theme.appcompat.light, want change title color of menu_title. how can fix white? how change default icon of group? thanks!


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -