MinSDKVersion = 7 TargetSDKVersion = 17
If the user has SDKVersion 11 or higher, I like to ask Theme.Holo.Light theme. This does not work for me. When I run the application on device 3.1, it just uses Theme.Light:

Same thing when I run this application on a device with a lower version than 3.1
My folder:

manifest:
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/MyTheme" >
v11 values:
<resources> <style name="AppBaseTheme" parent="@android:style/Theme.Light"> </style> <style name="AppTheme" parent="@android:style/Theme.Light"> </style> <style name="MyTheme" parent="@android:style/Theme.Holo.Light"> </style>
folders with other values:
<resources> <style name="AppBaseTheme" parent="@android:style/Theme.Light"> </style> <style name="AppTheme" parent="@android:style/Theme.Light"> </style> <style name="MyTheme" parent="@android:style/Theme.Light"> </style>
How can I use this correctly?
Regards Marco Seis
source share