What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Need Theme help

CHP

Member
CAP201102282345.jpg


I need help fixing this font color that blends in to be black... does anybody have any ideas? This is on ApeX 1.4.1. Any help is appreciated and the one who solves this gets credit for helping me. :)
 
Last edited:
framework-res.apk>res>values>styles.xml

then look for these two lines


<style name="TextAppearance.Widget.IconMenu.Item" parent="@style/TextAppearance.Small">
<item name="textColor">?textColorPrimaryInverse</item>

that one edits the main menus you have pictured...

then search for

<style name="Theme.ExpandedMenu" parent="@style/Theme">
<item name="listViewStyle">@style/Widget.ListView.Menu</item>
<item name="windowAnimationStyle">@style/Animation.OptionsPanel</item>
<item name="background">@null</item>
<item name="itemTextAppearance">?textAppearanceLargeInverse</item>
</style>

thats edits the menus that pop up when you click more

the red highlighted is what you want to edit.. you can just throw a hex color in there to get the text the color you want
 
Back
Top