Searched refs:heightSpec (Results 1 - 18 of 18) sorted by relevance

/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DControlPanelLayout.java40 protected void onMeasure(int widthSpec, int heightSpec) { argument
42 int heightSpecSize = MeasureSpec.getSize(heightSpec);
55 mode = MeasureSpec.getMode(heightSpec);
83 heightSpec = MeasureSpec.makeMeasureSpec(measuredSize, MeasureSpec.EXACTLY);
86 super.onMeasure(widthSpec, heightSpec);
H A DRotateLayout.java65 protected void onMeasure(int widthSpec, int heightSpec) { argument
70 measureChild(mChild, widthSpec, heightSpec);
76 measureChild(mChild, heightSpec, widthSpec);
H A DIndicatorControlWheelContainer.java117 protected void onMeasure(int widthSpec, int heightSpec) { argument
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/
H A DRotateLayout.java70 protected void onMeasure(int widthSpec, int heightSpec) { argument
75 measureChild(mChild, widthSpec, heightSpec);
81 measureChild(mChild, heightSpec, widthSpec);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DMeasureHelper.java45 public void measure(int widthSpec, int heightSpec) { argument
49 getLength(heightSpec, mPreferredHeight + p.top + p.bottom));
H A DGLView.java365 public void measure(int widthSpec, int heightSpec) { argument
366 if (widthSpec == mLastWidthSpec && heightSpec == mLastHeightSpec
372 mLastHeightSpec = heightSpec;
375 onMeasure(widthSpec, heightSpec);
382 protected void onMeasure(int widthSpec, int heightSpec) { argument
H A DUndoBarView.java91 protected void onMeasure(int widthSpec, int heightSpec) { argument
/packages/apps/LegacyCamera/src/com/android/camera/
H A DPreviewFrameLayout.java63 protected void onMeasure(int widthSpec, int heightSpec) { argument
65 int previewHeight = MeasureSpec.getSize(heightSpec);
/packages/apps/Camera/src/com/android/camera/ui/
H A DRotateLayout.java133 protected void onMeasure(int widthSpec, int heightSpec) { argument
138 measureChild(mChild, widthSpec, heightSpec);
144 measureChild(mChild, heightSpec, widthSpec);
/packages/apps/Camera/src/com/android/camera/
H A DPreviewFrameLayout.java85 protected void onMeasure(int widthSpec, int heightSpec) { argument
87 int previewHeight = MeasureSpec.getSize(heightSpec);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DPinnedHeaderListView.java360 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/
H A DStaggeredGridView.java2118 final int heightSpec;
2120 heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
2122 heightSpec = MeasureSpec.makeMeasureSpec(lp.height, MeasureSpec.EXACTLY);
2129 view.measure(widthSpec, heightSpec);
2361 final int heightSpec;
2363 heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
2365 heightSpec = MeasureSpec.makeMeasureSpec(lp.height, MeasureSpec.EXACTLY);
2368 child.measure(widthSpec, heightSpec);
2583 final int heightSpec;
2585 heightSpec
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationItemViewCoordinates.java321 final int heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
323 view.measure(widthSpec, heightSpec);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizePagedView.java393 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
395 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
1011 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
1013 layout.measure(widthSpec, heightSpec);
1161 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
1163 layout.measure(widthSpec, heightSpec);
H A DPagedView.java624 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.EXACTLY);
626 measure(widthSpec, heightSpec);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DAppsCustomizePagedView.java352 int heightSpec = MeasureSpec.makeMeasureSpec(mContentHeight, MeasureSpec.AT_MOST);
353 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
924 int heightSpec = MeasureSpec.makeMeasureSpec(mContentHeight, MeasureSpec.AT_MOST);
925 layout.measure(widthSpec, heightSpec);
1089 int heightSpec = MeasureSpec.makeMeasureSpec(mContentHeight, MeasureSpec.AT_MOST);
1096 layout.measure(widthSpec, heightSpec);
/packages/apps/Gallery2/src/com/android/photos/views/
H A DGalleryThumbnailView.java201 // final int heightSpec = MeasureSpec.makeMeasureSpec(child.getMeasuredHeight(), MeasureSpec.EXACTLY);
202 // child.measure(widthSpec, heightSpec);
269 int heightSpec = MeasureSpec.makeMeasureSpec(heightSize, MeasureSpec.EXACTLY);
271 child.measure(widthSpec, heightSpec);
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripView.java397 public void measure(int widthSpec, int heightSpec) { argument
398 mView.measure(widthSpec, heightSpec);

Completed in 5662 milliseconds