Adding animations in the RecyclerView items: Step 2
PreviousAdding animations in the RecyclerView items: Step 1NextRecyclerView animations step 2: Solution
Last updated
Last updated
class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
val avatar = itemView.iv_added_item
val container = itemView.added_item_container
}val slideAnimation = ...
holder.itemView.animation = slideAnimation
// container transition to end
// reset container transition (transition to start)