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!

Theming Guide for changing system text settings.

If you're using Cuttalot's theme and trying to compile his, you are going to get the errors.

What you should do is get a vanilla apk, make all your changes, then add the images. This is what has worked for me.
 
im working on a theme now and cant seem to find where the information for the sub menu text color is....(ie. if you go to browser then press menu then press more the text in there?)
 
Any time you press the soft menu key the text is part of this.


Next is the menu text (when you hit he soft key for menu)


Do ctrl + f and put in TextAppearance.Widget.IconMenu.Item and click find next.
You should now be at this area

Code:
<style name="TextAppearance.Widget.IconMenu.Item" parent="@style/TextAppearance.Small">
<item name="textColor">?textColorPrimary</item>
</style>
Change textColorPrimaryInverse (black) to textColorPrimary (white and then black when pressed)
Also you could delete the whole ?textColorPrimary and just put #ffff00ae as an example for the color code you desire.
If that is all you need save and look down for the completing instructions.
 
Its not the soft menu font color

The easiest way to explain what im referring to is to open up the browser press menu and then press more and a submenu pops up this is the text im referring to
 
b080bff7.jpg


This is what you are referring to.
 
Yes that is what I'm referring to, but mine don't seem to change here is a pic, when I press menu that text has changed, but the text we are discussing does not


44db288a.png
 
After getting home and looking at things it maybe in this xml. I say maybe cause I have change a lot of things. Look in /res/layout for list_menu_item_layout.xml. Either add a static color code, delete the inverse wording or point to a custom color in colors.xml. I believe this is the one that controls the sub-menu.
 
Search textcolortertiary in values/styles

Sent from my Droid using Tapatalk
 
Kinda off topic but does anyone know how to fix the contacts when you show the dial button in wy contacts you get random black boxes

Thanks to jrummy for the tip
Here is how to make it transparent if people need to know " [FONT=&quot]change parent="@android:Theme"> to parent="@android:Theme.Wallpaper" [/FONT]
 
Last edited:
Back
Top