保持折叠的工具栏处于关闭和禁用状态

时间:2018-12-21 07:18:49

标签: java android android-collapsingtoolbarlayout

我在主视图上使用collapsingToolBarLayout(android.support.design.widget.AppBarLayout)。我在其下添加了片段-在某些片段上,我设法使用此代码关闭了工具栏

appBarLayout.setExpanded(false);

但是,当我设置了这个值之后,我也希望它不能再次扩展。如果我要使用

AppBarLayout.LayoutParams params = (AppBarLayout.LayoutParams) collapsingToolbarLayout.getLayoutParams();
params.setScrollFlags(0);

工具栏已禁用,但始终处于展开状态。有办法解决吗?

这是我折叠的工具栏

Collapsed toolbar

这是展开后的工具栏

enter image description here

0 个答案:

没有答案