19

Is there any way to edit animation speed for CollapsingToolabrLayout ? I mean the fade out animation of View thats collapsed on scroll down.

TheJudge
  • 576
  • 1
  • 9
  • 30

1 Answers1

41

You can do it with (in ms):

app:scrimAnimationDuration="600"

<android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsingToolbar"
            android:layout_width="match_parent"
            android:layout_height="@dimen/header_size"
            android:fitsSystemWindows="true"
            app:scrimAnimationDuration="600"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

                ...

</android.support.design.widget.CollapsingToolbarLayout>

Also see: https://developer.android.com/reference/android/support/design/widget/CollapsingToolbarLayout.html#setScrimAnimationDuration(long)

Javatar
  • 2,518
  • 1
  • 31
  • 43