I have a class that extends the AppCompatActivity class, inside that I'm building a layout for which I would like to apply a style.
I'm getting the same error message as seen here:
You need to use a Theme.AppCompat theme (or descendant) with this activity
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity
This is what I was using before I switched to AppCompatActivity from simply Activity.
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
With this new class I just cannot access Theme.AppCompat as others were able to, just nothing comes up I could use.
I read the whole page and the official declarations but I cannot figure out why I cannot access the AppCompat styles as seen here in my AndroidManifest.xml above.