I'm just starting out with Android development, so bear with me. I downloaded Android Studio, and when I started a new project, this is a topic called Theme.AppCompat.Light(even tough I chose Holo Light when creating a new project). So my question is: why does the android use this and what is it useful for? I tried changing it to android:Theme.Holo.Light, but it just gives me an error: java.lang.IllegalStateException: you need to use the Theme.AppCompat (or descendant) theme with this action.
I am using this configuration SDK: Android: minSdkVersion = "7" Android: targetSdkVersion = "18"
So my question is: why are you using AppCompat and what do I need to do so that my application can use the Holo theme.
My activity class is the only default one that is generated (it extends ActionBarActivity).
source
share