HomeSort by relevance Sort by last modified time
    Searched refs:heightSpec (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ControlPanelLayout.java 40 protected void onMeasure(int widthSpec, int heightSpec) {
42 int heightSpecSize = MeasureSpec.getSize(heightSpec);
55 mode = MeasureSpec.getMode(heightSpec);
83 heightSpec = MeasureSpec.makeMeasureSpec(measuredSize, MeasureSpec.EXACTLY);
86 super.onMeasure(widthSpec, heightSpec);
RotateLayout.java 65 protected void onMeasure(int widthSpec, int heightSpec) {
70 measureChild(mChild, widthSpec, heightSpec);
76 measureChild(mChild, heightSpec, widthSpec);
IndicatorControlWheelContainer.java 117 protected void onMeasure(int widthSpec, int heightSpec) {
129 int heightMode = MeasureSpec.getMode(heightSpec);
141 measuredHeight = Math.min(desiredHeight, MeasureSpec.getSize(heightSpec));
143 measuredHeight = MeasureSpec.getSize(heightSpec);
  /packages/apps/Camera2/src/com/android/camera/ui/
RotateLayout.java 70 protected void onMeasure(int widthSpec, int heightSpec) {
75 measureChild(mChild, widthSpec, heightSpec);
81 measureChild(mChild, heightSpec, widthSpec);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MeasureHelper.java 45 public void measure(int widthSpec, int heightSpec) {
49 getLength(heightSpec, mPreferredHeight + p.top + p.bottom));
GLView.java 365 public void measure(int widthSpec, int heightSpec) {
366 if (widthSpec == mLastWidthSpec && heightSpec == mLastHeightSpec
372 mLastHeightSpec = heightSpec;
375 onMeasure(widthSpec, heightSpec);
382 protected void onMeasure(int widthSpec, int heightSpec) {
  /packages/apps/LegacyCamera/src/com/android/camera/
PreviewFrameLayout.java 63 protected void onMeasure(int widthSpec, int heightSpec) {
65 int previewHeight = MeasureSpec.getSize(heightSpec);
  /packages/apps/Camera/src/com/android/camera/ui/
RotateLayout.java 133 protected void onMeasure(int widthSpec, int heightSpec) {
138 measureChild(mChild, widthSpec, heightSpec);
144 measureChild(mChild, heightSpec, widthSpec);
  /packages/apps/Camera/src/com/android/camera/
PreviewFrameLayout.java 85 protected void onMeasure(int widthSpec, int heightSpec) {
87 int previewHeight = MeasureSpec.getSize(heightSpec);
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 184 final int heightSpec = MeasureSpec.makeMeasureSpec(layoutParams.height, MeasureSpec.EXACTLY);
185 mButton.measure(widthSpec, heightSpec);
243 int heightSpec;
256 heightSpec = MeasureSpec.makeMeasureSpec(layoutParams.height, MeasureSpec.EXACTLY);
257 view.measure(widthSpec, heightSpec);
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityViewFlipper.java 195 protected void onMeasure(int widthSpec, int heightSpec) {
197 final int heightMode = MeasureSpec.getMode(heightSpec);
203 Log.w(TAG, "onMeasure: heightSpec " + MeasureSpec.toString(heightSpec) +
208 final int heightSize = MeasureSpec.getSize(heightSpec);
MultiPaneChallengeLayout.java 208 protected void onMeasure(final int widthSpec, final int heightSpec) {
210 MeasureSpec.getMode(heightSpec) != MeasureSpec.EXACTLY) {
216 final int height = MeasureSpec.getSize(heightSpec);
275 child.measure(widthSpec, heightSpec);
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 780 final int heightSpec;
782 heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
784 heightSpec = MeasureSpec.makeMeasureSpec(lp.height, MeasureSpec.EXACTLY);
787 child.measure(widthSpec, heightSpec);
    [all...]
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 571 int heightSpec = 0;
590 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
602 heightSpec = height;
604 heightSpec = mDropDownHeight;
610 mDropDownVerticalOffset, widthSpec, heightSpec);
623 heightSpec = ViewGroup.LayoutParams.MATCH_PARENT;
632 mPopup.setWindowLayoutMode(widthSpec, heightSpec);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ListPopupWindow.java 587 int heightSpec = 0;
605 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
617 heightSpec = height;
619 heightSpec = mDropDownHeight;
625 mDropDownVerticalOffset, widthSpec, heightSpec);
638 heightSpec = ViewGroup.LayoutParams.MATCH_PARENT;
647 mPopup.setWindowLayoutMode(widthSpec, heightSpec);
    [all...]
  /frameworks/base/core/java/android/transition/
TransitionUtils.java 107 int heightSpec = View.MeasureSpec.makeMeasureSpec(bottom - top, View.MeasureSpec.EXACTLY);
108 copy.measure(widthSpec, heightSpec);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BaseCardView.java 648 int heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
653 extraView.measure(widthSpec, heightSpec);
691 int heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
696 extraView.measure(widthSpec, heightSpec);
    [all...]
GridLayoutManager.java 862 private void measureScrapChild(int position, int widthSpec, int heightSpec,
869 int childHeightSpec = ViewGroup.getChildMeasureSpec(heightSpec,
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java 478 private void measureChildWithDecorationsAndMargin(View child, int widthSpec, int heightSpec) {
483 heightSpec = updateSpecWithExtra(heightSpec, lp.topMargin + mDecorInsets.top,
485 child.measure(widthSpec, heightSpec);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 360 int heightSpec;
371 heightSpec = View.MeasureSpec
374 heightSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
376 view.measure(widthSpec, heightSpec);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
StaggeredGridView.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSTileView.java 248 int heightSpec = exactly(
250 mTopBackgroundView.measure(widthMeasureSpec, heightSpec);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewCoordinates.java 289 final int heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
291 view.measure(widthSpec, heightSpec);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DraggableDot.java 177 protected void onMeasure(int widthSpec, int heightSpec) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
AppBannerView.java     [all...]

Completed in 4007 milliseconds

1 2 3 4