Skip to content

Files

Latest commit

 

History

History
15 lines (12 loc) · 453 Bytes

NestedScrollView.md

File metadata and controls

15 lines (12 loc) · 453 Bytes

android.support.v4.widget.NestedScrollView

1.1 Detect Scrolling

mBinding.scrollDetect.setOnScrollChangeListener { v: NestedScrollView, _: Int, scrollY: Int, _: Int, oldScrollY: Int ->
  var gap = 0
  
  if(v.getChildAt(v.getChildCount() - 1) != null) {
    if ((scrollY + gap >= (v.getChildAt(v.getChildCount() - 1).getMeasuredHeight() - v.getMeasuredHeight())) && scrollY > oldScrollY) {
      // When scroll to bottom
    }
  }
}