本文主要是介绍安卓Kotlin 检测ScrollView是否到头,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
方法很简单,只需要
- 将布局文件中的
ScrollView
换成下面文件的LazyScrollView
<xxx.xxx.xxx.LazyScrollViewandroid:id="@+id/s"android:xxxx.... ....><LinearLayoutandroid:id="@+id/l"android:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical" />
</xxx.xxx.xxx.LazyScrollView>
//LazyScrollView.kt
//fumiama 20200730
package xxx.xxx.xxximport android.content.Context
import android.util.AttributeSet
import android.util.Log
import android.view.MotionEvent
import android.view.View
import android.widget.ScrollViewclass LazyScrollView : ScrollView {private val view: View?get() = getChildAt(0)constructor(context: Context?) : super(context)constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle)init {setOnTouchListener { _, event ->when (event.action) {MotionEvent.ACTION_UP -> this.postDelayed({if (view != null && onScrollListener != null) {if (onScrollListener != null) {//Log.d("MyS", "view?.measuredHeight: ${view?.measuredHeight}, scrollY: $scrollY, height: $height")when {view?.measuredHeight?:0 <= scrollY + height -> onScrollListener?.onBottom()scrollY == 0 -> onScrollListener?.onTop()else -> onScrollListener?.onScroll()}}}}, 233)}false}}/*** 定义接口* @author admin*/interface OnScrollListener {fun onBottom()fun onTop()fun onScroll()}var onScrollListener: OnScrollListener? = null
}
- 在想要监听的地方
override
接口
s.onScrollListener = object :LazyScrollView.OnScrollListener{override fun onTop() {}override fun onBottom() {}override fun onScroll() {}
}
即可。
代码参考:ScrollView滑动到最底端或者最顶端再加载数据
这篇关于安卓Kotlin 检测ScrollView是否到头的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!