HomeSort by relevance Sort by last modified time
    Searched refs:childHeight (Results 1 - 21 of 21) sorted by null

  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LinearLayoutEditTextsTest.java 52 final int childHeight = mChild.getHeight();
55 assertEquals(containerHeight, childHeight);
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 199 int childHeight = mButton.getMeasuredHeight();
201 childTop -= childHeight + mMarginBottom;
202 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
222 int childHeight = mButton.getMeasuredHeight();
225 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
245 int childHeight;
260 childHeight = view.getMeasuredHeight();
263 childTop -= childHeight + mMarginBottom;
266 childTop += childHeight + mMarginBottom;
280 view.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
ProportionalLayout.java 100 final int childHeight = child.getMeasuredHeight();
105 width = Math.round(childHeight * mRatio);
106 height = childHeight;
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 222 int childHeight = child.getMeasuredHeight();
223 int childTop = y + (contentHeight - childHeight) / 2;
225 child.layout(x, childTop, x + childWidth, childTop + childHeight);
232 int childHeight = child.getMeasuredHeight();
233 int childTop = y + (contentHeight - childHeight) / 2;
235 child.layout(x - childWidth, childTop, x, childTop + childHeight);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
FloatingChildLayout.java 107 final int childHeight = child.getMeasuredHeight();
118 final int childTop = target.centerY() - Math.round(childHeight * 0.35f);
122 final int clampedChildTop = clampDimension(childTop, childHeight, getHeight());
  /frameworks/base/core/java/android/widget/
LinearLayout.java 668 final int childHeight = child.getMeasuredHeight();
670 mTotalLength = Math.max(totalLength, totalLength + childHeight + lp.topMargin +
674 largestChildHeight = Math.max(childHeight, largestChildHeight);
802 int childHeight = child.getMeasuredHeight() + share;
803 if (childHeight < 0) {
804 childHeight = 0;
808 MeasureSpec.makeMeasureSpec(childHeight, MeasureSpec.EXACTLY));
    [all...]
SlidingDrawer.java 320 int childHeight = handle.getMeasuredHeight();
329 childTop = mExpanded ? mTopOffset : height - childHeight + mBottomOffset;
331 content.layout(0, mTopOffset + childHeight, content.getMeasuredWidth(),
332 mTopOffset + childHeight + content.getMeasuredHeight());
335 childTop = (height - childHeight) / 2;
342 handle.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
636 final int childHeight = mHandleHeight;
637 int height = mBottom - mTop - childHeight - mTopOffset;
640 content.layout(0, mTopOffset + childHeight, content.getMeasuredWidth(),
641 mTopOffset + childHeight + content.getMeasuredHeight())
    [all...]
RelativeLayout.java 488 final int childHeight = child.getMeasuredHeight();
489 params.mTop = height - mPaddingBottom - childHeight;
490 params.mBottom = params.mTop + childHeight;
    [all...]
AdapterViewAnimator.java 669 final int childHeight = getMeasuredHeight() - mPaddingTop - mPaddingBottom;
674 MeasureSpec.makeMeasureSpec(childHeight, MeasureSpec.EXACTLY));
    [all...]
Gallery.java 913 int childHeight = duringLayout ? child.getMeasuredHeight() : child.getHeight();
923 - mSpinnerPadding.top - childHeight;
927 childTop = myHeight - mSpinnerPadding.bottom - childHeight;
    [all...]
StackView.java     [all...]
GridView.java     [all...]
ScrollView.java 262 int childHeight = child.getHeight();
263 return getHeight() < childHeight + mPaddingTop + mPaddingBottom;
    [all...]
ListView.java     [all...]
GridLayout.java 854 int childWidth, int childHeight) {
858 mPaddingTop + mPaddingBottom + getTotalMargin(child, false), childHeight);
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
PagerTitleStrip.java 161 final int childHeight = getHeight() - getPaddingTop() - getPaddingBottom();
164 final int childHeightSpec = MeasureSpec.makeMeasureSpec(childHeight, MeasureSpec.EXACTLY);
257 int childHeight = heightSize;
265 childHeight -= padding;
269 final int childHeightSpec = MeasureSpec.makeMeasureSpec(childHeight, heightMode);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsScrollViewPerformanceHelper.java 128 final int childHeight = mLinearLayout.getHeight();
129 if (scrollY + mScrollView.getHeight() > childHeight) {
131 d.setBounds(0, childHeight, mScrollView.getWidth(),
  /packages/apps/Mms/src/com/android/mms/ui/
SlideView.java 466 int childHeight = getChildAt(0).getHeight();
468 mBottomY = height < childHeight ? childHeight - height : 0;
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileAdapter.java 632 final int childHeight = imageSize + child.getPaddingBottom();
635 MeasureSpec.makeMeasureSpec(childHeight, MeasureSpec.EXACTLY)
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 590 final int childHeight = child.getMeasuredHeight();
593 childTop += ((getMeasuredHeight() - verticalPadding) - childHeight) / 2;
598 childLeft + child.getMeasuredWidth(), childTop + childHeight);
    [all...]
  /development/sdk/prebuilt/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 

Completed in 675 milliseconds