Searched defs:mActiveViews (Results 1 - 1 of 1) sorted by path

/frameworks/base/core/java/android/widget/
H A DAbsListView.java6618 * The position of the first view stored in mActiveViews.
6624 * layout, and at the end of layout all view in mActiveViews are moved to mScrapViews.
6625 * Views in mActiveViews represent a contiguous range of Views, with position of the first
6628 private View[] mActiveViews = new View[0]; field in class:AbsListView.RecycleBin
6714 * @param childCount The minimum number of views mActiveViews should hold
6716 * mActiveViews
6719 if (mActiveViews.length < childCount) {
6720 mActiveViews = new View[childCount];
6725 final View[] activeViews = mActiveViews;
6742 * mActiveViews i
[all...]

Completed in 65 milliseconds