Home
last modified time | relevance | path

Searched refs:paddedBottom (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
DSimpleMonthView.java908 final int paddedBottom = h - paddingBottom; in onLayout() local
910 final int paddedHeight = paddedBottom - paddingTop; in onLayout()
DAbsListView.java7993 final int paddedBottom = getHeight() - mListPadding.bottom;
8009 if (targetBottom > paddedBottom) {
8010 scrollBy = targetBottom - paddedBottom;
8026 if (scrollBy < 0 && boundBottom + absScroll > paddedBottom) {
8028 scrollBy = Math.max(0, boundBottom - paddedBottom);
/frameworks/base/core/java/com/android/internal/widget/
DActionBarView.java1233 final int paddedBottom = mBottom - mTop - getPaddingBottom(); in onLayout() local
1234 ypos = ((paddedBottom - paddedTop) - customView.getMeasuredHeight()) / 2; in onLayout()