我想在我的 Android 应用程序中隐藏标题/操作栏。对于不同的 Android 固件,我有不同的主题。这是在我的清单中,它引用了theme.xml 文件......
android:theme="@style/MyAppTheme"
第一个“theme.xml”——工作正常
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyAppTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Any customizations for your app running on pre-3.0 devices here -->
</style>
</resources>
第二个“theme.xml”——这是我的问题。代码没有错误,但是当我在运行 Android 3.1 的模拟器中运行应用程序时,操作栏仍然位于顶部。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyAppTheme" parent="@android:style/Theme.Holo.Light.NoActionBar">
<!-- Any customizations for your app running on 3.0+ devices here -->
</style>
</resources>
第三个“theme.xml”——工作正常
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyAppTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar">
<!-- Any customizations for your app running on 4.0+ devices here -->
</style>
</resources>