Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java899 final int paddedBottom = h - paddingBottom; in onLayout() local
901 final int paddedHeight = paddedBottom - paddingTop; in onLayout()
H A DAbsListView.java7671 final int paddedBottom = getHeight() - mListPadding.bottom;
7687 if (targetBottom > paddedBottom) {
7688 scrollBy = targetBottom - paddedBottom;
7704 if (scrollBy < 0 && boundBottom + absScroll > paddedBottom) {
7706 scrollBy = Math.max(0, boundBottom - paddedBottom);
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java1233 final int paddedBottom = mBottom - mTop - getPaddingBottom(); in onLayout() local
1234 ypos = ((paddedBottom - paddedTop) - customView.getMeasuredHeight()) / 2; in onLayout()