我还试图在 Android 2.2 上隐藏操作栏,但这些解决方案都没有奏效。一切都以崩溃告终。我检查了 DDMS 日志,它告诉我使用“Theme.AppCompat”。最后我通过更改android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
线路解决了问题
进入android:theme="@style/Theme.AppCompat.NoActionBar"
并且它工作,但界面是黑暗的。
然后我尝试android:theme="@style/Theme.AppCompat.Light.NoActionBar"
了,终于得到了我想要的。
之后,当我在开发者网站上搜索“AppCompat”时,我得到了这个。
所以我认为 Android 2.2 的解决方案是
<activity
android:name=".MainActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
并且很抱歉我的英语不好,就像往常一样。