Adding enterAlways to the scroll flags of the Cheesesquare demo:
<android.support.design.widget.CollapsingToolbarLayout android:id="@+id/collapsing_toolbar" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" app:contentScrim="?attr/colorPrimary" app:layout_scrollFlags="scroll|exitUntilCollapsed|enterAlways">
leads to the wrong location:

When scrolling down, the title does the right thing, but it does not stop in the right position. Scrolling additionally moves the details: the background image is displayed in the wrong position, and the toolbar becomes invisible due to changes in the background color. (I also added a colorPrimary background to the toolbar here to make it more visible, but the problem, of course, does not depend on color). Today, libraries are the latest, 23.1.0.
Is there any workaround, or should we wait for it to be fixed in the library? Right now, this seems to be a showstopper for any application that needs this functionality.
enterAlwaysCollapsed works, but it gives other functionality, this is not a workaround.
source share