Невозможно полностью скрыть заголовок панели инструментов, когда открыт вид поиска - PullRequest
1 голос
/ 11 апреля 2019

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

Пожалуйста, совет.

Спасибо.

...