を拡張し、あなたのテーマはTheme.AppCompat
またはTheme.AppCompat
のまともなする必要があります。
つまり、親を持つテーマがTheme.AppCompat
またはテーマを継承する必要があることを意味します。
これをあなたの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>
マニフェストで、あなたのアクティビティテーマをこのテーマに変更します。
<activity
...
android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen">
またhttp://stackoverflow.com/questions/30284627/how-to-show-and-hide-actionbar-with-appcompat-v-7 –