I want to use styles to control the text color of the context menu (ie
the menu that pops up when I tap and hold on a list item).  My
styles.xml would look like this.

<?xml version="1.0" encoding="utf-8"?>
<resources>
        <style name="MyTheme" parent="android:style/Theme">
        <item  name="android:<WHAT STYLE>">@style/MyMenuStyle </item>
        </style>

        <style name="MyMenuStyle" parent="@android:style/Widget.<WHAT
WIGET>">
                <item name="android:textColor">@android:color/black</item>
        </style>
</resources>

What should I used for ‘WHAT STYLE’ and ‘WHAT WIGET’?

What are all the possible values that can go into ‘WHAT STYLE’ and
‘WHAT WIGET’?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to