android - Where to get info about the themes and xml attributes -
here in code below
<style name="customactionbartheme" parent="@style/theme.holo">     <item name="android:actionbarstyle">@style/myactionbar</item>     <item name="android:actionbartabtextstyle">@style/myactionbartabtext</item>     <item name="android:actionmenutextcolor">@color/actionbar_text</item> </style> where info attribute android:actionmenutextcolor, etc. , how know have use attribute here.
check documentation property actionmenutextcolor:
color text appears within action menu items.
may reference resource, in form "@[+][package:]type:name" or theme attribute in form "?[package:][type:]name".
may color value, in form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".
here can find examples styling action bar
Comments
Post a Comment