Home
last modified time | relevance | path

Searched refs:contentHeight (Results 1 – 13 of 13) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
DActionBarContextView.java323 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local
330 x += positionChild(mClose, x, y, contentHeight, isLayoutRtl); in onLayout()
335 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl); in onLayout()
339 x += positionChild(mCustomView, x, y, contentHeight, isLayoutRtl); in onLayout()
345 x += positionChild(mMenuView, x, y, contentHeight, !isLayoutRtl); in onLayout()
DAbsActionBarView.java263 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) { in positionChild() argument
266 int childTop = y + (contentHeight - childHeight) / 2; in positionChild()
DScrollingTabContainerView.java197 public void setContentHeight(int contentHeight) { in setContentHeight() argument
198 mContentHeight = contentHeight; in setContentHeight()
/frameworks/base/core/java/com/android/internal/widget/
DActionBarContextView.java386 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local
393 x += positionChild(mClose, x, y, contentHeight, isLayoutRtl); in onLayout()
399 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl); in onLayout()
403 x += positionChild(mCustomView, x, y, contentHeight, isLayoutRtl); in onLayout()
409 x += positionChild(mMenuView, x, y, contentHeight, !isLayoutRtl); in onLayout()
DAbsActionBarView.java263 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) { in positionChild() argument
266 int childTop = y + (contentHeight - childHeight) / 2; in positionChild()
DActionBarView.java1093 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local
1095 if (contentHeight <= 0) { in onLayout()
1122 next(x, startOffset, isLayoutRtl), y, contentHeight, isLayoutRtl); in onLayout()
1134 x += positionChild(mListNavLayout, x, y, contentHeight, isLayoutRtl); in onLayout()
1141 x += positionChild(mTabScrollView, x, y, contentHeight, isLayoutRtl); in onLayout()
1149 positionChild(mMenuView, menuStart, y, contentHeight, !isLayoutRtl); in onLayout()
1155 positionChild(mIndeterminateProgressView, menuStart, y, contentHeight, !isLayoutRtl); in onLayout()
DScrollingTabContainerView.java189 public void setContentHeight(int contentHeight) { in setContentHeight() argument
190 mContentHeight = contentHeight; in setContentHeight()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DExpandableView.java176 public void setContentHeight(int contentHeight) { in setContentHeight() argument
177 setActualHeight(contentHeight + getBottomDecorHeight(), true); in setContentHeight()
DNotificationContentView.java252 public void setContentHeight(int contentHeight) { in setContentHeight() argument
253 mContentHeight = Math.max(Math.min(contentHeight, getHeight()), getMinHeight());; in setContentHeight()
254 mUnrestrictedContentHeight = Math.max(contentHeight, getMinHeight()); in setContentHeight()
DExpandableNotificationRow.java866 int contentHeight = calculateContentHeightFromActualHeight(height); in setActualHeight() local
867 mPrivateLayout.setContentHeight(contentHeight); in setActualHeight()
868 mPublicLayout.setContentHeight(contentHeight); in setActualHeight()
/frameworks/base/core/java/android/widget/
DScrollView.java1233 final int contentHeight = getHeight() - mPaddingBottom - mPaddingTop; in computeVerticalScrollRange() local
1235 return contentHeight; in computeVerticalScrollRange()
1240 final int overscrollBottom = Math.max(0, scrollRange - contentHeight); in computeVerticalScrollRange()
/frameworks/support/v4/java/android/support/v4/widget/
DNestedScrollView.java1287 final int contentHeight = getHeight() - getPaddingBottom() - getPaddingTop(); in computeVerticalScrollRange() local
1289 return contentHeight; in computeVerticalScrollRange()
1294 final int overscrollBottom = Math.max(0, scrollRange - contentHeight); in computeVerticalScrollRange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java1311 int contentHeight = getContentHeight(); in getScrollRange() local
1313 scrollRange = Math.max(0, contentHeight - mMaxLayoutHeight + mBottomStackPeekSize in getScrollRange()