0

我的 AndroidManifest.xml 文件中有以下活动:

<activity
        android:name=".gameContent.GameActivity"
        android:configChanges="orientation|screenSize"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>

问题是我在运行项目时遇到异常:

java.lang.IllegalStateException:您需要在此活动中使用 Theme.AppCompat 主题(或后代)。

为此类活动设置全屏主题的正确 XML 是什么?

4

1 回答 1

1

尝试将其放入您的 styles.xml

<style name="AppTheme.Fullscreen" parent="@style/Theme.AppCompat.Light.DarkActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowContentOverlay">@null</item>
</style>

然后在你的清单中

android:theme="@style/AppTheme.Fullscreen"
于 2016-03-11T02:48:20.543 回答