Answers for "You need to use a Theme.AppCompat theme (or descendant) with this activity."

1

how to solve Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

<style name="AppFullScreenTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowActionBar">false</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowContentOverlay">@null</item>
</style>
Posted by: Guest on July-16-2020
1

how to solve Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

<application
    android:theme="@style/AppTheme">
Posted by: Guest on July-16-2020
0

how to solve Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

<activity android:name=".MainActivity"
    android:theme="@style/AppFullScreenTheme" >
Posted by: Guest on July-16-2020

Code answers related to "You need to use a Theme.AppCompat theme (or descendant) with this activity."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language