Searched defs:mListPadding (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsListView.java320 Rect mListPadding = new Rect(); field in class:AbsListView
1127 return getChildAt(0).getTop() >= mListPadding.top &&
1128 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom;
1826 final Rect listPadding = mListPadding;
1905 canScrollUp = child.getTop() < mListPadding.top;
1922 canScrollDown = child.getBottom() > mBottom - mListPadding.bottom;
1948 return mListPadding.top;
1960 return mListPadding.bottom;
1972 return mListPadding.left;
1984 return mListPadding
[all...]

Completed in 166 milliseconds