26

有没有办法隐藏窗口标题,使其不会在全屏模式下显示(

getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN,
                LayoutParams.FLAG_FULLSCREEN)

) 但随后会出现在

getWindow().clearFlags(LayoutParams.FLAG_FULLSCREEN)

?

requestWindowFeature(Window.FEATURE_NO_TITLE)

当然不是一种选择,因为这不允许将其取回。

4

6 回答 6

59

我在我的 Android 游戏中处理这个问题的方法是在我的 Activity 的 onCreate() 中调用以下行

requestWindowFeature(Window.FEATURE_NO_TITLE);

然后,我可以在我的活动类(通常从菜单选项中调用)中使用以下代码关闭和打开全屏功能(m_contentView 变量是使用您在调用 setContentView() 时使用的 id 来自 findViewById() 的视图你的创建)

private void updateFullscreenStatus(boolean bUseFullscreen)
{   
   if(bUseFullscreen)
   {
        getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
        getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
    }
    else
    {
        getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
        getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
    }

    m_contentView.requestLayout();
}

我在所有游戏中都使用了这种技术,没有任何问题。

为什么说

requestWindowFeature(Window.FEATURE_NO_TITLE); 当然不是一种选择

?

::编辑::

好吧,如果您尝试在活动的生命周期内动态显示和隐藏它,我不确定您是否可以使用官方窗口标题来做到这一点,因为已经提到需要在 setContentView() 之前设置窗口功能的注释被称为(链接

您可以做的一件事是实现您自己的标题栏并动态显示和隐藏它...我将这个示例放在一起应该让您走上正确的轨道

这是布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:fadingEdgeLength="0sp"
    >

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/myTitleBarLayout" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:orientation="vertical"
        >

        <TextView
            android:id="@+id/myTitleBarTextView"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content"
            android:text="@string/app_name"
            android:paddingTop="4dip"
            android:paddingBottom="4dip"
            android:paddingLeft="6dip"
            android:textStyle="bold"
            android:shadowColor="#BB000000"
            android:shadowRadius="3.0"
            android:shadowDy=".25"

        />

        <View
            android:layout_width="fill_parent"
            android:layout_height="1dip"
            android:background="#CCEEEEEE"
            android:padding="10dip"
        />
    </LinearLayout>

    <ScrollView  xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:layout_weight="1"
        >

        <!-- Insert your regular layout stuff here -->

        <Button android:id="@+id/toggle_title_button" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:text="Toggle Title" 
        />
    </ScrollView>
</LinearLayout>

这是主要活动的代码,可让您打开和关闭我们的自定义标题栏

package com.snctln.test.HelloGridView;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;

public class HelloGridView extends Activity
{
    public void onCreate(Bundle savedInstanceState)
    {
        requestWindowFeature(Window.FEATURE_NO_TITLE);

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        TextView tv = (TextView)this.findViewById(R.id.myTitleBarTextView);
        tv.setBackgroundColor(0xFF848284);
        tv.setTextColor(0xFFFFFFFF);

        Button toggleTitleButton = (Button)this.findViewById(R.id.toggle_title_button);

        toggleTitleButton.setOnClickListener( new OnClickListener()
            {
                @Override
                public void onClick(View v)
                {
                    LinearLayout ll = (LinearLayout)findViewById(R.id.myTitleBarLayout);

                    if(ll.getVisibility() == View.GONE)
                    {
                        ll.setVisibility(View.VISIBLE);
                    }
                    else
                    {
                        ll.setVisibility(View.GONE);
                    }
                }
            });
    }
}

它看起来并不完美,但你总是可以多玩一些布局来做到这一点。

替代文字

我的另一个想法是,如果您只想隐藏所有内容以显示进度条,为什么不使用ProgressDialog

这个类很容易使用...

progressDlg = ProgressDialog.show(context, getString(R.string.progress_dialog_title_prepare), getString(R.string.progress_dialog_body_prepare));

// do long running operation

if(operationFailed)
{
    progressDlg.cancel();
}
else
{
    progressDlg.dismiss();
}
于 2009-06-14T03:14:32.513 回答
13

添加android:theme="@android:style/Theme.NoTitleBar.Fullscreen"到清单文件中的应用程序标签将使每个活动全屏。

于 2012-01-25T15:11:37.657 回答
11

禁用应用程序的标题(它是应用程序名称)

requestWindowFeature(Window.FEATURE_NO_TITLE)

禁用顶部的通知栏(因此向 android 应用程序管理器请求允许全屏)

getWindow().addFlags(LayoutParams.FLAG_FULLSCREEN)

希望这可以帮助任何想知道区别的人!

于 2011-09-29T19:41:13.567 回答
10
if(useFullscreen)  
{  
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);  
    getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);  
}  
else  
{  
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);  
    getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);  
}  

这对我有用..在 onResume 方法

于 2011-05-01T12:25:40.377 回答
3

在 Android 3+ 上可以通过调用getActionBar().hide()getActionBar().show()分别显示和隐藏标准的 ActionBar来轻松实现

在 Android 1,2 上,最好的解决方案(我猜)是为你的“标题栏”实现自定义视图并按需隐藏它(当然,requestWindowFeature(Window.FEATURE_NO_TITLE);在开始时调用)。

于 2013-04-29T12:28:00.437 回答
1

根据文档和 android-developers google group,这是不可能的。要实现这一点,您需要添加一个带有文本和进度条的“类似标题栏”的布局项,并在需要时隐藏/显示。现在 - 没有其他办法,因为标题栏控制只能在 setContentView 调用之前完成,之后不能更改。

于 2009-06-14T12:56:32.300 回答