等recyclerview 加载完毕就点击第一个条目
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了等recyclerview 加载完毕就点击第一个条目相关的知识,希望对你有一定的参考价值。
recyclerView.addOnLayoutChangeListener(object : View.OnLayoutChangeListener
override fun onLayoutChange(
v: View?,
left: Int,
top: Int,
right: Int,
bottom: Int,
oldLeft: Int,
oldTop: Int,
oldRight: Int,
oldBottom: Int
)
// 当RecyclerView加载完毕时,移除监听器并自动点击第一个item
recyclerView.removeOnLayoutChangeListener(this)
recyclerView.findViewHolderForAdapterPosition(0)?.itemView?.performClick()
)
以上是关于等recyclerview 加载完毕就点击第一个条目的主要内容,如果未能解决你的问题,请参考以下文章