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>
2 番目の「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>
3 番目の「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>