RecyclerView的FadingEdge参数

   日期:2020-07-10     浏览:194    评论:0    
核心提示:当滑动列表需要两侧阴影时,可以设置RecyclerView的FadingEdge属性:

当滑动列表需要两侧阴影时,可以设置RecyclerView的FadingEdge属性:

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/recyclerView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fadingEdgeLength="50dp"
    android:fadingEdge="horizontal"
    android:requiresFadingEdge="horizontal" />

fadingEdgeLength参数为阴影的长度,当API Level>14 应该使用requiresFadingEdge

这样RecyclerView两端都会有阴影

如果仅需左侧或者是右侧需要 需要重写View类的获取阴影长度的方法

将不需要阴影的部分返回参数设置为0即可

import android.content.Context
import android.util.AttributeSet
import androidx.recyclerview.widget.RecyclerView


class FadingEdgeRecyclerView : RecyclerView {
    constructor(context: Context) : super(context)
    constructor(context: Context, attrs: AttributeSet) : super(context, attrs)

    override fun getLeftFadingEdgeStrength(): Float {
        return 0F
    }

    override fun getRightFadingEdgeStrength(): Float {
        return super.getRightFadingEdgeStrength()
    }

    override fun getTopFadingEdgeStrength(): Float {
        return super.getTopFadingEdgeStrength()
    }

    override fun getBottomFadingEdgeStrength(): Float {
        return super.getBottomFadingEdgeStrength()
    }
}

当需要定制阴影时,原生方法不支持,只能使用替代方法

在外层包一个ImageView控件,通过监听RecyclerView的滑动来实现显示/隐藏阴影

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ImageView
        android:id="@+id/ivLine"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@mipmap/icon_line"
        android:visibility="gone" />
</FrameLayout>
recyclerView.addOnScrollListener(object : RecyclerView.OnScrollListener() {
    override fun onScrollStateChanged(recyclerView: RecyclerView, newState: Int) {
        super.onScrollStateChanged(recyclerView, newState)
        val isNotTop = recyclerView.canScrollHorizontally(-1)
        ivLine.visibility = if (isNotTop) View.VISIBLE else View.GONE
    }
})

 

 

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服