1.更改sdk至3.0及以上
2.在res的values-v11和values里分别新建一个styles.xml
3.values-v11下添加 <style name="AppTheme" parent="android:Theme.Holo.Light">
4.values下添加 <style name="AppTheme" parent="@android:style/Theme.Light">
5.manifest.xml下的application下添加 android:theme="@style/AppTheme" >
其实就是自定义一个theme在不同的sdk环境下继承不同的值。
还能分的更细一些,比如values-v14 等等。