Last active
August 3, 2018 07:14
-
-
Save patrick-elmquist/931b47b7305da30c894568b0f9efb252 to your computer and use it in GitHub Desktop.
Enter animation demo: Apply GridLayoutAnimation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int resId = R.anim.grid_layout_animation_from_bottom; | |
LayoutAnimationController animation = AnimationUtils.loadLayoutAnimation(ctx, resId); | |
recyclerview.setLayoutAnimation(animation); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<android.support.v7.widget.RecyclerView | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:layoutAnimation="@anim/grid_layout_animation_from_bottom" | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what about ctx