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

1 2 3

  /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 68 protected void onMeasure(int widthSpec, int heightSpec) {
73 measureChild(mChild, widthSpec, heightSpec);
79 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) {
UndoBarView.java 91 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 177 protected void onMeasure(int widthSpec, int heightSpec) {
179 final int heightMode = MeasureSpec.getMode(heightSpec);
185 Log.w(TAG, "onMeasure: heightSpec " + MeasureSpec.toString(heightSpec) +
190 final int heightSize = MeasureSpec.getSize(heightSpec);
MultiPaneChallengeLayout.java 209 protected void onMeasure(final int widthSpec, final int heightSpec) {
211 MeasureSpec.getMode(heightSpec) != MeasureSpec.EXACTLY) {
217 final int height = MeasureSpec.getSize(heightSpec);
276 child.measure(widthSpec, heightSpec);
SlidingChallengeLayout.java 813 protected void onMeasure(int widthSpec, int heightSpec) {
815 MeasureSpec.getMode(heightSpec) != MeasureSpec.EXACTLY) {
820 final int height = MeasureSpec.getSize(heightSpec);
    [all...]
  /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 557 int heightSpec = 0;
576 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
588 heightSpec = height;
590 heightSpec = mDropDownHeight;
596 mDropDownVerticalOffset, widthSpec, heightSpec);
609 heightSpec = ViewGroup.LayoutParams.MATCH_PARENT;
618 mPopup.setWindowLayoutMode(widthSpec, heightSpec);
    [all...]
GridLayout.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ListPopupWindow.java 517 int heightSpec = 0;
535 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.FILL_PARENT;
547 heightSpec = height;
549 heightSpec = mDropDownHeight;
555 mDropDownVerticalOffset, widthSpec, heightSpec);
568 heightSpec = ViewGroup.LayoutParams.FILL_PARENT;
577 mPopup.setWindowLayoutMode(widthSpec, heightSpec);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 364 int heightSpec;
367 heightSpec = View.MeasureSpec
370 heightSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
372 view.measure(widthSpec, heightSpec);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
StaggeredGridView.java     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DraggableDot.java 177 protected void onMeasure(int widthSpec, int heightSpec) {
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 390 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
392 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizePagedView.java 379 int heightSpec = MeasureSpec.makeMeasureSpec(mContentHeight, MeasureSpec.AT_MOST);
380 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 201 // 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);

Completed in 3402 milliseconds

1 2 3