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

12 3 4

  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 297 int childHeight = child.getHeight() + listview.getDividerHeight();
298 startTop = top + (i > 0 ? childHeight : -childHeight);
  /frameworks/base/core/java/com/android/internal/widget/
AlertDialogLayout.java 314 final int childHeight = child.getMeasuredHeight();
349 setChildFrame(child, childLeft, childTop, childWidth, childHeight);
350 childTop += childHeight + lp.bottomMargin;
  /frameworks/base/graphics/java/android/graphics/drawable/
InsetDrawable.java 234 final int childHeight = getDrawable().getIntrinsicHeight();
235 if (childHeight < 0) {
238 return childHeight + mState.mInsetTop + mState.mInsetBottom;
  /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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableView.java 80 int childHeight = child.getMeasuredHeight();
81 maxChildHeight = Math.max(maxChildHeight, childHeight);
  /frameworks/support/design/src/android/support/design/widget/
AppBarLayout.java 348 final int childHeight = child.getMeasuredHeight();
353 range += childHeight + lp.topMargin + lp.bottomMargin;
395 final int childHeight = child.getMeasuredHeight();
407 range += childHeight - ViewCompat.getMinimumHeight(child);
410 range += childHeight;
434 int childHeight = child.getMeasuredHeight();
435 childHeight += lp.topMargin + lp.bottomMargin;
441 range += childHeight;
    [all...]
CoordinatorLayout.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationChildrenContainer.java 727 float childHeight = child.isExpanded(true /* allowOnKeyguard */)
730 maxContentHeight += childHeight;
749 float childHeight = child.isExpanded(true /* allowOnKeyguard */)
756 childHeight, fraction), false);
758 child.setActualHeight((int) childHeight, false);
    [all...]
  /frameworks/base/core/java/android/view/
NotificationHeaderView.java 185 int childHeight = child.getMeasuredHeight();
189 int top = (int) (getPaddingTop() + (ownHeight - childHeight) / 2.0f);
190 int bottom = top + childHeight;
  /frameworks/support/core-ui/java/android/support/v4/view/
PagerTitleStrip.java 299 final int childHeight = getHeight() - getPaddingTop() - getPaddingBottom();
300 final int maxHeight = Math.max(0, childHeight);
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 739 int childHeight;
756 childHeight = getViewportHeight() - verticalPadding
758 mNormalChildHeight = childHeight;
764 childHeight = getViewportHeight();
773 MeasureSpec.makeMeasureSpec(childHeight, childHeightMode);
823 final int childHeight = child.getMeasuredHeight();
827 childLeft + child.getMeasuredWidth(), childTop + childHeight);
    [all...]
  /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...]
AdapterViewAnimator.java 683 final int childHeight = getMeasuredHeight() - mPaddingTop - mPaddingBottom;
688 MeasureSpec.makeMeasureSpec(childHeight, MeasureSpec.EXACTLY));
    [all...]
ScrollView.java 290 int childHeight = child.getHeight();
291 return getHeight() < childHeight + mPaddingTop + mPaddingBottom;
    [all...]
Gallery.java 945 int childHeight = duringLayout ? child.getMeasuredHeight() : child.getHeight();
955 - mSpinnerPadding.top - childHeight;
959 childTop = myHeight - mSpinnerPadding.bottom - childHeight;
    [all...]
Toolbar.java     [all...]
StackView.java     [all...]
GridView.java     [all...]
  /frameworks/support/core-ui/java/android/support/v4/widget/
DrawerLayout.java     [all...]
NestedScrollView.java 424 int childHeight = child.getHeight();
425 return getHeight() < childHeight + getPaddingTop() + getPaddingBottom();
    [all...]
SlidingPaneLayout.java 553 final int childHeight = child.getMeasuredHeight();
555 if (heightMode == MeasureSpec.AT_MOST && childHeight > layoutHeight) {
556 layoutHeight = Math.min(childHeight, maxLayoutHeight);
    [all...]
SwipeRefreshLayout.java 629 final int childHeight = height - getPaddingTop() - getPaddingBottom();
630 child.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
    [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/v7/appcompat/src/android/support/v7/widget/
Toolbar.java     [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...]

Completed in 1085 milliseconds

12 3 4