我正在使用 NestedScrollView,我想检查 NestedScrollView 是在底部还是在顶部:-)
有什么建议么?谢谢!
创建一个 SetOnScrollChangeListener
BottomSheet.SetOnScrollChangeListener(this);
监听器接口内部
public void OnScrollChange(NestedScrollView v, int scrollX, int scrollY, int oldScrollX, int oldScrollY)
{
if (scrollY == 0)
{
//Do something here when ur scroll reached the bottom by scrolling up
}
if (scrollY == (v.getChildAt(0).getMeasuredHeight() - v.getMeasuredHeight()))
{
//Do something here when ur scroll reached top by scrolling down
}
}
ViewCompat.canScrollVertically(target, -1);