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

/frameworks/base/core/java/android/widget/
H A DAbsListView.java333 Rect mListPadding = new Rect(); field in class:AbsListView
1191 return getChildAt(0).getTop() >= mListPadding.top &&
1192 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom;
1392 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom;
1399 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom;
1957 final Rect listPadding = mListPadding;
2036 canScrollUp = child.getTop() < mListPadding.top;
2053 canScrollDown = child.getBottom() > mBottom - mListPadding
[all...]

Completed in 60 milliseconds