gazayas
gazayas

Reputation: 107

Can't use Theme.Holo.Light even though I have API set to 14

I know this has come up and I looked at some other pages to find some help but I'm still having this problem.

I updated the minSdkVersion in build.gradle and hit sync. In the manifest file I set the application theme to android:theme="@style/Theme.Holo.Light"

I still get the cannot resolve symbol @style/Theme.Holo.Light error

I can only use the Theme.AppCompat stuff, nothing else shows up

Any ideas?

Upvotes: 3

Views: 2271

Answers (1)

chintan darji
chintan darji

Reputation: 27

You can custom your theme and you can set Holo.Light over there just create a theme.xml file in /res/values. And write

<style name="CustomActionBarTheme"
    parent="@android:style/Theme.Holo">
</style>

GO over to manifest and set your custom theme.

Upvotes: 1

Related Questions