How I can clicking on an image of a row of a RecyclerView
, display an image in the center of the screen with an animation like Whatsapp
?
Thank you
What you are looking for is called shared element transition
.
In your RecycleAdapter
add these line . android:transitionName="TRANSITION_NAME"
<ImageView
android:transitionName="TRANSITION_NAME"
android:layout_width="@dimen/content_width"
android:layout_height="@dimen/content_height" />
Also , in the next page's ImageView
also add the same line