滚动时,回收视图项淡出动画

3

我目前正在使用Java开发Android项目,实际上我想让地图过滤器在滚动时淡出,以避免随机停止。

这是默认的动画效果。enter image description here

这是我想要实现的效果,根据滚动方向淡入/淡出动画。enter image description here

1个回答

16

你只需要添加属性requiresFadingEdge,如果想指定透明度的长度,可以添加另一个属性fadingEdgeLength。

祝你的项目好运。

<android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:requiresFadingEdge="horizontal"
        android:fadingEdgeLength="20dp">
    </android.support.v7.widget.RecyclerView>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接