Skip to content

Instantly share code, notes, and snippets.

@patrick-elmquist
Last active July 26, 2017 18:04
Show Gist options
  • Save patrick-elmquist/5db09644693480fd7c7598ecd0648c40 to your computer and use it in GitHub Desktop.
Save patrick-elmquist/5db09644693480fd7c7598ecd0648c40 to your computer and use it in GitHub Desktop.
Enter animation demo: Apply a LayoutAnimation
int resId = R.anim.layout_animation_fall_down;
LayoutAnimationController animation = AnimationUtils.loadLayoutAnimation(ctx, resId);
recyclerview.setLayoutAnimation(animation);
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layoutAnimation="@anim/layout_animation_fall_down"
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment