My app uses Theme.Holo.Light.DarkActionBar as the parent theme.
When I use my Android 3.2 tablet emulator, the EditText form is almost impossible to see. He seems to be trying to draw white on white. Seen here:

When I use it on my Android 4.0 tablet emulator, the EditText form looks just fine. You can see a dark gray line along the bottom of the EditText. If you look at the image above, you can hardly see the white line in the same place where it intersects the light gray background watermark.

Here is my EditText in the layout:
<EditText android:id="@+id/fieldName" style="@style/PlayerDetails.Field" android:capitalize="words" />
And here is the style:
<style name="PlayerDetails.Field"> <item name="android:layout_weight">0.65</item> <item name="android:paddingLeft">10dp</item> <item name="android:layout_width">0dp</item> <item name="android:layout_height">fill_parent</item> <item name="android:layout_marginLeft">10dp</item> </style>
Why is my EditText getting the wrong color? I do not override the drawing or background code.
Kenny wyland
source share