HomeSort by relevance Sort by last modified time
    Searched refs:heightSpec (Results 1 - 25 of 62) 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/Gallery2/tests/src/com/android/gallery3d/ui/
GLViewMock.java 71 protected void onMeasure(int widthSpec, int heightSpec) {
74 mOnMeasureHeightSpec = heightSpec;
78 item.measure(widthSpec, heightSpec);
80 setMeasuredSize(widthSpec, heightSpec);
  /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/Gallery2/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);
  /packages/apps/Gallery2/src/com/android/camera/
PreviewFrameLayout.java 77 protected void onMeasure(int widthSpec, int heightSpec) {
79 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/core/java/android/widget/
ListPopupWindow.java 535 int heightSpec = 0;
554 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
566 heightSpec = height;
568 heightSpec = mDropDownHeight;
574 mDropDownVerticalOffset, widthSpec, heightSpec);
587 heightSpec = ViewGroup.LayoutParams.MATCH_PARENT;
596 mPopup.setWindowLayoutMode(widthSpec, heightSpec);
    [all...]
GridLayout.java     [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardSecurityViewFlipper.java 178 protected void onMeasure(int widthSpec, int heightSpec) {
180 final int heightMode = MeasureSpec.getMode(heightSpec);
186 Log.w(TAG, "onMeasure: heightSpec " + MeasureSpec.toString(heightSpec) +
191 final int heightSize = MeasureSpec.getSize(heightSpec);
MultiPaneChallengeLayout.java 205 protected void onMeasure(final int widthSpec, final int heightSpec) {
207 MeasureSpec.getMode(heightSpec) != MeasureSpec.EXACTLY) {
213 final int height = MeasureSpec.getSize(heightSpec);
248 int adjustedHeightSpec = heightSpec;
269 child.measure(widthSpec, heightSpec);
SlidingChallengeLayout.java 794 protected void onMeasure(int widthSpec, int heightSpec) {
796 MeasureSpec.getMode(heightSpec) != MeasureSpec.EXACTLY) {
802 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/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 355 int heightSpec;
358 heightSpec = View.MeasureSpec
361 heightSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
363 view.measure(widthSpec, heightSpec);
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java     [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageListItemCoordinates.java 261 int heightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
262 view.measure(widthSpec, heightSpec);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DraggableDot.java 177 protected void onMeasure(int widthSpec, int heightSpec) {
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 390 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
392 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]

Completed in 227 milliseconds

1 2 3