1

我需要在 Os 4.0+ 中隐藏导航栏(带有后退按钮的导航栏)。我试图在不诉诸代码的情况下做到这一点。这是我的styles.xml资源文件:

        <?xml version="1.0" encoding="utf-8"?>
        <resources>
            <style name="AppBaseTheme" parent="@android:style/Theme.Holo.Light">
            </style>


            <style name="AppTheme" parent="AppBaseTheme">
            </style>


            <style name="FullScreen" parent="@android:style/Theme.NoTitleBar.Fullscreen">
            </style>

        </resources>

这是我的清单:

        <?xml version="1.0" encoding="utf-8"?>
        <manifest xmlns:android="http://schemas.android.com/apk/res/android"
            package="xxx.xxx.xxx.xxx"
            android:versionCode="1"
            android:versionName="1.0" >

            <uses-sdk
                android:minSdkVersion="11"
                android:targetSdkVersion="17" />

            <application
                android:allowBackup="true"
                android:icon="@drawable/ic_launcher"
                android:label="@string/app_name"
                android:theme="@style/AppTheme" >
                <activity
                    android:name="xxx.xxx.xxx.xxx.MainActivity"
                    android:configChanges="orientation|keyboardHidden|screenSize"
                    android:label="@string/app_name"
                    android:theme="@style/FullScreen" >
                    <intent-filter>
                        <action android:name="android.intent.action.MAIN" />
                        <category android:name="android.intent.category.LAUNCHER" />
                    </intent-filter>
                </activity>
            </application>

        </manifest>

我正在尝试将 Holo light 设置为全局主题,而全屏主题仅用于主要活动。上述文件不起作用,我发现的唯一方法是在我的活动的 onCreate 中执行此操作:

mainView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);

仅 xml 的方法有什么问题吗?

PS:我知道这在 3.x 中是不可能的,但我正在 4.1 模拟器中对此进行测试,并且可以使用setSystemUiVisibility.

4

1 回答 1

2

最后,似乎仅使用 XML 是不可能的。即使使用代码,在某些平板电脑(如三星 Galaxy Tab)中也无法隐藏导航栏。

于 2013-08-21T11:37:37.363 回答