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

/frameworks/base/core/java/android/widget/
H A DAbsListView.java6143 * The position of the first view stored in mActiveViews.
6149 * layout, and at the end of layout all view in mActiveViews are moved to mScrapViews.
6150 * Views in mActiveViews represent a contiguous range of Views, with position of the first
6153 private View[] mActiveViews = new View[0]; field in class:AbsListView.RecycleBin
6239 * @param childCount The minimum number of views mActiveViews should hold
6241 * mActiveViews
6244 if (mActiveViews.length < childCount) {
6245 mActiveViews = new View[childCount];
6249 final View[] activeViews = mActiveViews;
6264 * mActiveViews i
[all...]

Completed in 14 milliseconds