I want to be able to enable and disable the scroll of collapsing toolbar. Can anyone show me an example how to use AppBarLayout.Behavior.DragCallback?
Asked
Active
Viewed 3,779 times
1 Answers
20
In order to enable/disable the scroll of the collapsing toolbar you can provide a custom DragCallback as part of your AppBarLayout's behavior. Here is a sample code:
private void setAppBarDragging(final boolean newValue) {
AppBarLayout appBarLayout = (AppBarLayout) findViewById(R.id.appbar_layout);
CoordinatorLayout.LayoutParams params =
(CoordinatorLayout.LayoutParams) appBarLayout.getLayoutParams();
AppBarLayout.Behavior behavior = new AppBarLayout.Behavior();
behavior.setDragCallback(new AppBarLayout.Behavior.DragCallback() {
@Override
public boolean canDrag(AppBarLayout appBarLayout) {
return newValue;
}
});
params.setBehavior(behavior);
}

dev.bmax
- 8,998
- 3
- 30
- 41
-
2This prevent scrolling in the RecyclerView, and not just collapsing of the AppBarLayout – android developer Jun 12 '17 at 09:02