Recyclerview属性配置记录

Recyclerview属性:

1、requiresFadingEdge:属性用来设置拉滚动条时 ,边框渐变的方向。

  • none(边框颜色不变)
  • horizontal(水平方向颜色变淡)
  • vertical(垂直方向颜色变淡)

2、fadingEdgeLength:用来设置边框渐变的长度

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:requiresFadingEdge="vertical"
        android:fadingEdgeLength="20dp"/>

你可能感兴趣的:(RecyclerView,Recyclerview)