1、
res --> values --> styles.xml
新版:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
</style>
旧版:
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
2、
res --> values-v11 --> styles.xml
新版:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
</style>
旧版:
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
</style>
3、
res --> values-v14 --> styles.xml
新版:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
</style>
旧版:
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
</style>
4、
res --> menu --> main.xml
新版:
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="never"/>
旧版:
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:showAsAction="never"
android:title="@string/action_settings"/>
X