如何隐藏/显示自定义标题按钮单击在Android中

时间:2013-07-03 07:21:35

标签: android titlebar

我正在开发一个Android项目。我想在按钮点击上显示/隐藏自定义标题栏。此按钮适用于媒体播放器(全屏尺寸/自定义屏幕尺寸)请帮帮我。

@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);

1 个答案:

答案 0 :(得分:0)

这将隐藏操作栏:

this.requestWindowFeature(Window.FEATURE_NO_TITLE);

这会让他回来:

this.requestWindowFeature(Window.FEATURE_ACTION_BAR);