我创建了一个自定义工具栏。当我单击搜索时,搜索视图会展开,但工具栏标题没有完全隐藏。
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);
}
请咨询。
谢谢。