java.lang.IllegalStateException use a Theme.AppCompat theme with this activity

ww‮ttual.w‬uri.com
java.lang.IllegalStateException use a Theme.AppCompat theme with this activity

configure a theme

<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>
<activity android:name=".MainActivity"
    android:theme="@style/AppFullScreenTheme" >
or

<activity android:name=".MainActivity"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
Created Time:2017-09-15 23:02:58  Author:lautturi