在RecyclerView中缩放中心项

时间:2019-02-04 16:53:28

标签: android kotlin android-recyclerview

在RecyclerView中滚动时,我想要实现以下功能: enter image description here

中心项目的缩放比例大于其他项目。我找到了一种缩放所有项目的方法,或者所谓的轮播效果。但这不是我想要的。我只想缩放中心项目,其他项目保持默认大小。

这是我在其他答案中发现的:

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
            }
        }
    })
}

正如我所说,这将缩放所有可见项目,而我只想缩放中心项目。

1 个答案:

答案 0 :(得分:0)

您可以给中间的孩子不同的缩放比例。

从childCount计算中间子对象,并使用与其他子元素不同的缩放比例。