android - styling drop down/navigation bar actionbarsherlock font -


in application have, have actionbar drop down's font white. till have following style:

    <style name="theme.myapplications" parent="@style/theme.sherlock.light.darkactionbar">         <item name="actionbarstyle">@style/actionbar.solid</item>         <item name="android:textsize">18sp</item>     </style>      <style name="actionbar.title" parent="textappearance.sherlock.widget.actionbar.title">         <item name="android:textcolor">@android:color/white</item>     </style>      <style name="actionbar.subtitle" parent="textappearance.sherlock.widget.actionbar.subtitle">         <item name="android:textcolor">@android:color/white</item>     </style>      <style name="actionbar.solid" parent="@style/widget.sherlock.light.actionbar.solid">         <item name="titletextstyle">@style/actionbar.title</item>         <item name="subtitletextstyle">@style/actionbar.subtitle</item>     </style> 

enter image description here

this style gives me black colored font in android 3.0 , higher. can please me configure font white ? funny thing action overflow popup's font appears in white.

for used simple

<style name="theme.myapplications" parent="@style/theme.sherlock">     <item name="android:textsize">18sp</item>     <item name="android:textcolor">#ffffff</item> </style> 

its simple got job done. , got job done change in style's parent.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -