Reputation: 17132
How can I manually collapse a CollapingToolbarLayout
?
I kept digging, but there are no state setters, no nothing.
Upvotes: 0
Views: 306
Reputation: 31438
As long as you're using Android Support Library
version 23 or higher, you can use a method of your AppBarLayout
- setExpanded(...)
.
Upvotes: 1