I have an app that I want to develop for Android 2.1, 2.2, 2.3.3, 3.0/3.1 and 4.0.x. Between those API levels, there are about 3 different types of Themes. The latest 4.0.x
You can declare a theme in your values/styles.xml and then in your values-v11/styles.xml override it with the Holo-version:
values/styles.xml:
values-v11/styles.xml:
Do it that way, and you'll have Holo themes on API 11+ devices and regular themes on the others.
Regards Steffen Vangsgaard