我的 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 是什么?