FINALLY figured it out.  Here is the solution:

TextView does NOT support pressed state correctly.  I changed the view to a 
Button and it worked perfectly!


so menuitem.xml changed to....

<Button
    xmlns:android="http://schemas.android.com/apk/res/android";
    android:textColor="@color/btn_blue_text"
    android:textSize="14px"    
    android:layout_width="fill_parent"
    android:layout_height="60px"
    android:paddingTop="5px"
    android:paddingBottom="5px"
    android:text="test string"
    android:layout_gravity="center_horizontal"
    android:gravity="center"
    android:background="@drawable/btn_blue"
/>

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

Reply via email to