滚动

时间:2017-10-28 02:17:04

标签: java android animation android-recyclerview

目前我正在使用java开发一个android项目, 实际上我想让地图过滤器在滚动时淡出,这样它就不会随机停止。

这是默认动画。enter image description here

这是我想要达到的效果,根据滚动方向,fadeout / fadein动画。enter image description here

1 个答案:

答案 0 :(得分:5)

您只需要添加属性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>