Android - RecyclerView 图像中的 onClick 动画作为 Whatsapp

Android - Animation onClick in image of RecyclerView as Whatsapp

如何单击 image of a row of a RecyclerView,在屏幕中央显示带有 动画 的图像,例如 Whatsapp?

谢谢

您要找的是shared element transition

在您的 RecycleAdapter 中添加这些行。 android:transitionName="TRANSITION_NAME"

<ImageView
    android:transitionName="TRANSITION_NAME"
    android:layout_width="@dimen/content_width"
    android:layout_height="@dimen/content_height" />

此外,在下一页的 ImageView 中也添加相同的行