0

我正在做一个安卓项目。我想在按钮单击时显示/隐藏自定义标题栏。此按钮用于媒体播放器(全屏尺寸/自定义屏幕尺寸),请帮助我。

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        setContentView(R.layout.activity_main1);
        ctx=this;
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.custom_title1);
    //  FrameLayout frameLayout = (FrameLayout) findViewById(R.id.menu);
    //  FrameLayout frameLayout2 = (FrameLayout) findViewById(R.id.menu1);

对于隐藏自定义标题,我正在使用以下代码onClick()

 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
4

1 回答 1

0

这将隐藏操作栏:

this.requestWindowFeature(Window.FEATURE_NO_TITLE);

这将使他回来:

this.requestWindowFeature(Window.FEATURE_ACTION_BAR);
于 2013-07-03T07:26:32.877 回答