中心项目的缩放比例大于其他项目。我找到了一种缩放所有项目的方法,或者所谓的轮播效果。但这不是我想要的。我只想缩放中心项目,其他项目保持默认大小。
这是我在其他答案中发现的:
override fun onAttachedToRecyclerView(recyclerView: RecyclerView) {
val snapHelper = LinearSnapHelper()
snapHelper.attachToRecyclerView(recyclerView)
recyclerView.addOnScrollListener(object : RecyclerView.OnScrollListener() {
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
val layoutManager = recyclerView.layoutManager!!
val midpoint = layoutManager.width / 2f
val distance = shrinkDistance * midpoint
for (i in 0 until layoutManager.childCount) {
val child = layoutManager.getChildAt(i)!!
val childMidpoint = (layoutManager.getDecoratedRight(child) + layoutManager.getDecoratedLeft(child)) / 2f
val d = Math.min(distance, Math.abs(midpoint - childMidpoint))
val scale = 1 + -shrinkAmount * d / distance
child.scaleX = scale
child.scaleY = scale
}
}
})
}
正如我所说,这将缩放所有可见项目,而我只想缩放中心项目。
答案 0 :(得分:0)
您可以给中间的孩子不同的缩放比例。
从childCount计算中间子对象,并使用与其他子元素不同的缩放比例。