RecyclerView doesn't scale with its item
问题 Here's github rep example of the issue and the RecyclerView adapter for your convenience. I am scaling RecyclerView item on click imageView.setOnClickListener { val pivotType = Animation.RELATIVE_TO_SELF val scaleAnime = ScaleAnimation(1f,2f,1f,2f, pivotType, 0.5f, pivotType, 0.5f ) scaleAnime.duration = 400 scaleAnime.fillAfter = true ViewCompat.setElevation(it,1f) it.startAnimation(scaleAnime) } However, I'm struggling with the following issues: The RecyclerView itself doesn't react to the