Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DSimpleMonthView.java897 final int paddedBottom = h - paddingBottom; in onLayout() local
899 final int paddedHeight = paddedBottom - paddingTop; in onLayout()
DAbsListView.java7609 final int paddedBottom = getHeight() - mListPadding.bottom;
7625 if (targetBottom > paddedBottom) {
7626 scrollBy = targetBottom - paddedBottom;
7642 if (scrollBy < 0 && boundBottom + absScroll > paddedBottom) {
7644 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()