As the error message states, your theme needs to be Theme.AppCompat
or decent of Theme.AppCompat
.
That means you need a theme with its parent as Theme.AppCompat
or theme with inherits it.
Add this to your styles.xml
.
<style name="Theme.AppCompat.Light.NoActionBar.FullScreen" parent="@style/Theme.AppCompat.Light">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
And in the manifest, change your activity theme to this theme.
<activity
...
android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen">