HomeSort by relevance Sort by last modified time
    Searched defs:childHeight (Results 26 - 50 of 89) sorted by null

12 3 4

  /frameworks/base/core/java/android/widget/
RelativeLayout.java 588 final int childHeight = child.getMeasuredHeight();
589 params.mTop = height - mPaddingBottom - childHeight;
590 params.mBottom = params.mTop + childHeight;
    [all...]
SlidingDrawer.java 344 int childHeight = handle.getMeasuredHeight();
353 childTop = mExpanded ? mTopOffset : height - childHeight + mBottomOffset;
355 content.layout(0, mTopOffset + childHeight, content.getMeasuredWidth(),
356 mTopOffset + childHeight + content.getMeasuredHeight());
359 childTop = (height - childHeight) / 2;
366 handle.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
660 final int childHeight = mHandleHeight;
661 int height = mBottom - mTop - childHeight - mTopOffset;
664 content.layout(0, mTopOffset + childHeight, content.getMeasuredWidth(),
665 mTopOffset + childHeight + content.getMeasuredHeight())
    [all...]
GridView.java     [all...]
ScrollView.java 290 int childHeight = child.getHeight();
291 return getHeight() < childHeight + mPaddingTop + mPaddingBottom;
    [all...]
Toolbar.java     [all...]
ListView.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
RecentsView.java 366 int childHeight = mEmptyView.getMeasuredHeight();
370 Math.max(0, (bottom - top - topBottomInsets - childHeight)) / 2;
371 mEmptyView.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/view/
PagerTitleStrip.java 298 final int childHeight = getHeight() - getPaddingTop() - getPaddingBottom();
299 final int maxHeight = Math.max(0, childHeight);
  /frameworks/support/core-ui/java/android/support/v4/widget/
SwipeRefreshLayout.java 612 final int childHeight = height - getPaddingTop() - getPaddingBottom();
613 child.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
    [all...]
NestedScrollView.java 421 int childHeight = child.getHeight();
422 return getHeight() < childHeight + getPaddingTop() + getPaddingBottom();
    [all...]
SlidingPaneLayout.java 552 final int childHeight = child.getMeasuredHeight();
554 if (heightMode == MeasureSpec.AT_MOST && childHeight > layoutHeight) {
555 layoutHeight = Math.min(childHeight, maxLayoutHeight);
    [all...]
DrawerLayout.java     [all...]
  /frameworks/support/design/src/android/support/design/widget/
AppBarLayout.java 346 final int childHeight = child.getMeasuredHeight();
351 range += childHeight + lp.topMargin + lp.bottomMargin;
393 final int childHeight = child.getMeasuredHeight();
405 range += childHeight - ViewCompat.getMinimumHeight(child);
408 range += childHeight;
432 int childHeight = child.getMeasuredHeight();
433 childHeight += lp.topMargin + lp.bottomMargin;
439 range += childHeight;
    [all...]
CoordinatorLayout.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 662 final int childHeight = child.getMeasuredHeight();
664 mTotalLength = Math.max(totalLength, totalLength + childHeight + lp.topMargin +
668 largestChildHeight = Math.max(childHeight, largestChildHeight);
798 int childHeight = child.getMeasuredHeight() + share;
799 if (childHeight < 0) {
800 childHeight = 0;
804 MeasureSpec.makeMeasureSpec(childHeight, MeasureSpec.EXACTLY));
    [all...]
Toolbar.java     [all...]
  /packages/services/Car/car-ui-provider/src/android/car/ui/provider/
CarDrawerLayout.java 731 final int childHeight = drawerView.getMeasuredHeight();
741 childHeight + drawerLp.topMargin);
    [all...]
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 802 final int childHeight = child.getMeasuredHeight();
803 final int childBottom = childTop + childHeight;
813 if (rec != null && rec.height != childHeight) {
815 rec.height = childHeight;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 663 final int childHeight = child.getMeasuredHeight();
666 childTop += ((getMeasuredHeight() - verticalPadding) - childHeight) / 2;
671 childLeft + child.getMeasuredWidth(), childTop + childHeight);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 797 int childHeight;
814 childHeight = getViewportHeight() - verticalPadding
816 mNormalChildHeight = childHeight;
822 childHeight = getViewportHeight();
831 MeasureSpec.makeMeasureSpec(childHeight, childHeightMode);
882 final int childHeight = child.getMeasuredHeight();
886 childLeft + child.getMeasuredWidth(), childTop + childHeight);
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationStackScrollLayout.java 597 int childHeight = getIntrinsicHeight(child) + padding;
601 mOwnScrollY += childHeight;
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 

Completed in 550 milliseconds

12 3 4