First, I created two styles, one is value and the other is value-21.
In values/styles.xml is
<resources>
<style name="AppTheme" parent="Theme.AppCompat"></style>
</resources>
In values-v21/styles.xml is
<resources>
<style name="AppTheme" parent="android:Theme.Material"></style>
</resources>
My gradle file (app.gradle)
Since the ActionBarActivity
is deprecated, so I use AppCompatActivity
.
When I set these two style values and extend AppCompatActivity
in MainActivity
, I got the exception:
java.lang.IllegalStateException: You need to use a Theme.AppCompat
theme (or descendant) with this activity.
I do the two different changes and that exception never shows up again:
- Extend "android.app.Activity" instead of v7.AppCompatActivity.
- Change to "Theme.AppCompat" in values-v21/styles.xml.
Should I extend the "android.app.Activity" if I want to use the design theme?
Or, is there another way to use material design theme?
Thanks.
Try this: