无法隐藏ActionBar(Android)

时间:2015-01-13 09:48:02

标签: android android-actionbar

我试图在SplashScreenActivity中隐藏ActionBar,但我无法隐藏。它总是显示出来。

我试过这个:但没有工作

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.activity_splash);

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
        getActionBar().hide();
        setContentView(R.layout.activity_splash);

这不幸停止了应用

    <application
            android:name="info.androidhive.awesomewallpapers.app.AppController"
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/FreeWallTheme">
            <activity
                android:name="info.androidhive.awesomewallpapers.SplashActivity"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>

4 个答案:

答案 0 :(得分:3)

在应用程序的清单文件中,在<application>标签中设置以下属性。

android:theme="@android:style/Theme.NoTitleBar.Fullscreen

答案 1 :(得分:0)

在主题中设置以下行:

<item name="windowActionBar">false</item>

答案 2 :(得分:0)

尝试在下面的活动中添加新主题标记:

 <activity
        android:name="info.androidhive.awesomewallpapers.SplashActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" >

答案 3 :(得分:0)

试试这个,它对我有用:

getSupportActionBar().hide();

你必须在onCreate方法中调用它