Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13cf1dd4 authored by Adam Powell's avatar Adam Powell Committed by Android Git Automerger
Browse files

am ee849500: am 5703bbfa: Merge "Fix a bug in ListView where touch scrolling...

am ee849500: am 5703bbfa: Merge "Fix a bug in ListView where touch scrolling could skip a data set change" into jb-dev

* commit 'ee849500':
  Fix a bug in ListView where touch scrolling could skip a data set change
parents 8b1f1220 ee849500
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -3179,6 +3179,13 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
                mActivePointerId = ev.getPointerId(pointerIndex);
            }
            final int y = (int) ev.getY(pointerIndex);

            if (mDataChanged) {
                // Re-sync everything if data has been changed
                // since the scroll operation can query the adapter.
                layoutChildren();
            }

            switch (mTouchMode) {
            case TOUCH_MODE_DOWN:
            case TOUCH_MODE_TAP: