apache / incubator-weex

Apache Weex (Incubating)
https://weex.apache.org
Apache License 2.0
13.75k stars 1.82k forks source link

[Android]scroll组件-在页面打开的时候,会触发scrollEnd事件,ios则不会, #3317

Open dufangyu1990 opened 3 years ago

dufangyu1990 commented 3 years ago

Android scroll组件-在页面打开的时候,会触发scrollEnd事件,ios则不会,看了下代码,在scrollview 初始化的时候init()方法里就用handler发送了一个消息 private void init() { setWillNotDraw(false); startScrollerTask(); setOverScrollMode(View.OVER_SCROLL_NEVER); childHelper = new NestedScrollingChildHelper(this); childHelper.setNestedScrollingEnabled(true); }

public void startScrollerTask() { if (mScrollerTask == null) { mScrollerTask = new Handler(WXThread.secure(this)); } mInitialPosition = getScrollY(); mScrollerTask.sendEmptyMessageDelayed(0, mCheckTime); } init中的startScrollerTask()是否可以注释掉或者是出于什么考虑这样设计