Searched refs:getMeasuredHeight (Results 1 - 25 of 141) sorted by relevance

123456

/frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
H A DManyEditTextActivityNoScrollPanScanTests.java34 mTargetActivity.getRootView().getMeasuredHeight());
H A DManyEditTextActivityScrollPanScanTests.java34 mTargetActivity.getRootView().getMeasuredHeight());
H A DManyEditTextActivityScrollResizeTests.java34 mTargetActivity.getRootView().getMeasuredHeight());
H A DBigEditTextActivityNonScrollablePanScanTests.java46 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
H A DBigEditTextActivityNonScrollableResizeTests.java45 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
H A DBigEditTextActivityScrollablePanScanTests.java45 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
H A DBigEditTextActivityScrollableResizeTests.java46 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
H A DBottomEditTextActivityPanScanTests.java46 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
H A DBottomEditTextActivityResizeTests.java46 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
H A DOneEditTextActivityNotSelectedTests.java47 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
H A DOneEditTextActivitySelectedTests.java50 verifyEditTextAdjustment(servedView, rootView.getMeasuredHeight());
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DFillInWrapTest.java52 mChild.getMeasuredHeight() < mContainer.getMeasuredHeight());
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSContainer.java61 * The height this view wants to be. This is different from {@link #getMeasuredHeight} such that
68 return getMeasuredHeight();
73 int height = mHeightOverride != -1 ? mHeightOverride : getMeasuredHeight();
H A DSignalTileView.java73 int hs = MeasureSpec.makeMeasureSpec(mIconFrame.getMeasuredHeight(), MeasureSpec.EXACTLY);
74 int ws = MeasureSpec.makeMeasureSpec(mIconFrame.getMeasuredHeight(), MeasureSpec.AT_MOST);
98 mIconFrame.getBottom() - indicator.getMeasuredHeight(),
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintContentView.java237 mClosedOptionsOffsetY = mSummaryContent.getMeasuredHeight()
238 - mDraggableContent.getMeasuredHeight();
249 params.height = heightSize - mStaticContent.getMeasuredHeight()
250 - mSummaryContent.getMeasuredHeight() - mDynamicContent.getMeasuredHeight()
251 + mDraggableContent.getMeasuredHeight();
256 if (mOldDraggableHeight != mDraggableContent.getMeasuredHeight()) {
260 mOldDraggableHeight = mDraggableContent.getMeasuredHeight();
273 mStaticContent.layout(left, top, right, mStaticContent.getMeasuredHeight());
276 mSummaryContent.layout(left, mStaticContent.getMeasuredHeight(), righ
[all...]
H A DPrintOptionsLayout.java106 rowHeight = Math.max(rowHeight, child.getMeasuredHeight() + childParams.topMargin
154 final int childBottom = childTop + child.getMeasuredHeight();
160 rowHeight = Math.max(rowHeight, child.getMeasuredHeight()
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridInHorizontalTest.java47 assertTrue("Grid has 0 height", mGridView.getMeasuredHeight() > 0);
H A DGridInVerticalTest.java47 assertTrue("Grid has 0 height", mGridView.getMeasuredHeight() > 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DSystemBarScrimViews.java64 mStatusBarScrimView.setTranslationY(-mStatusBarScrimView.getMeasuredHeight());
81 mNavBarScrimView.setTranslationY(mNavBarScrimView.getMeasuredHeight());
106 .translationY(-mStatusBarScrimView.getMeasuredHeight())
114 .translationY(mNavBarScrimView.getMeasuredHeight())
H A DDebugOverlayView.java142 addRect(new Rect(getMeasuredWidth() - sCornerRectSize, getMeasuredHeight() - sCornerRectSize,
143 getMeasuredWidth(), getMeasuredHeight()), 0xFFff0000);
150 canvas.drawRect(0, 0, getMeasuredWidth(), getMeasuredHeight(), mDebugOutline);
165 canvas.drawText(mText, 10f, getMeasuredHeight() - mTmpRect.height() - mConfig.systemInsets.bottom, mTmpPaint);
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListUnspecifiedMeasure.java52 assertTrue(mListView.getMeasuredHeight() > 0);
/frameworks/base/tools/layoutlib/studio-custom-widgets/src/com/android/tools/idea/editors/theme/widgets/
H A DErrorCatcher.java61 resolveSize(child.getMeasuredHeight(), heightMeasureSpec));
88 child.layout(0, 0, child.getMeasuredWidth(), child.getMeasuredHeight());
/frameworks/base/test-runner/src/android/test/
H A DViewAsserts.java211 int firstBottom = xy[1] + first.getMeasuredHeight();
214 int secondBottom = xy[1] + second.getMeasuredHeight();
230 int firstBottom = xy[1] + first.getMeasuredHeight();
233 int secondBottom = xy[1] + second.getMeasuredHeight();
311 int center = (reference.getMeasuredHeight() - test.getMeasuredHeight()) / 2;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContainer.java132 mSplitBackground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight());
241 return view == null || view.getVisibility() == GONE || view.getMeasuredHeight() == 0;
246 return view.getMeasuredHeight() + lp.topMargin + lp.bottomMargin;
287 final int containerHeight = getMeasuredHeight();
289 final int tabHeight = tabContainer.getMeasuredHeight();
297 mSplitBackground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java357 mainHeight += mainView.getMeasuredHeight();
374 infoHeight += infoView.getMeasuredHeight();
385 extraHeight += extraView.getMeasuredHeight();
415 (int) (currBottom + mainView.getMeasuredHeight()));
416 currBottom += mainView.getMeasuredHeight();
423 infoHeight += mInfoViewList.get(i).getMeasuredHeight();
443 int viewHeight = infoView.getMeasuredHeight();
466 (int) (currBottom + extraView.getMeasuredHeight()));
467 currBottom += extraView.getMeasuredHeight();
654 extraHeight = Math.max(extraHeight, extraView.getMeasuredHeight());
[all...]

Completed in 506 milliseconds

123456