Reputation: 1117
Getting errors in style.xml when i change build target to 2.3.3, I think i need to change the theme from holo to something but i don't know any theme names
Here the line where the errors are
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
Upvotes: 0
Views: 146
Reputation: 135
if you are using advanced features like action bar..etc there is one library project called SherlocActionBar you can try with this
Upvotes: 1
Reputation: 134
Holo theme is not supported for old android versions. A quick option could be this
<style name="LightThemeSelector" parent="@android:style/Theme.Light">
...
</style>
Upvotes: 1