打开搜索视图时,无法完全隐藏工具栏标题

时间:2019-04-11 09:49:06

标签: java android android-toolbar searchview

enter image description here

我创建了一个自定义工具栏。当我单击搜索时,搜索视图会展开,但工具栏标题没有完全隐藏。

 if (toolbar != null) {
        setSupportActionBar(toolbar);
        if (getSupportActionBar() != null) {
            getSupportActionBar().setDisplayHomeAsUpEnabled(false);
            toolbar.setContentInsetsAbsolute(0, 0);
        }
    }

    ActionBar actionBar = getSupportActionBar();
    if (actionBar != null) {
        actionBar.setDisplayShowTitleEnabled(false);
        actionBar.setDisplayShowHomeEnabled(false);
        actionBar.setDisplayShowCustomEnabled(true);
        View customView = getLayoutInflater().inflate(R.layout.view_web_browser_action_bar, null);
        getSupportActionBar().setCustomView(customView);

        mActionBarTitleText = customView.findViewById(R.id.actionBarTitleText);
        mActionBarLogoImage = customView.findViewById(R.id.actionBarLogoImage);
        ImageView actionBarBackButton = customView.findViewById(R.id.actionBarBackButton);
        mActionBarLogoImage.setVisibility(View.GONE);

        actionBar.setCustomView(customView);
    }

请咨询。

谢谢。

0 个答案:

没有答案