Searched refs:mActiveViews (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsListView.java6379 * The position of the first view stored in mActiveViews.
6385 * layout, and at the end of layout all view in mActiveViews are moved to mScrapViews.
6386 * Views in mActiveViews represent a contiguous range of Views, with position of the first
6389 private View[] mActiveViews = new View[0]; field in class:AbsListView.RecycleBin
6475 * @param childCount The minimum number of views mActiveViews should hold
6477 * mActiveViews
6480 if (mActiveViews.length < childCount) {
6481 mActiveViews = new View[childCount];
6486 final View[] activeViews = mActiveViews;
6503 * mActiveViews i
[all...]

Completed in 28 milliseconds