HomeSort by relevance Sort by last modified time
    Searched refs:widthSpec (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) {
41 int widthSpecSize = MeasureSpec.getSize(widthSpec);
50 mode = MeasureSpec.getMode(widthSpec);
81 widthSpec = 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) {
128 int widthMode = MeasureSpec.getMode(widthSpec);
134 measuredWidth = Math.min(desiredWidth, MeasureSpec.getSize(widthSpec));
136 measuredWidth = MeasureSpec.getSize(widthSpec);
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLViewMock.java 71 protected void onMeasure(int widthSpec, int heightSpec) {
73 mOnMeasureWidthSpec = widthSpec;
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) {
48 getLength(widthSpec, mPreferredWidth + p.left + p.right),
GLView.java 365 public void measure(int widthSpec, int heightSpec) {
366 if (widthSpec == mLastWidthSpec && heightSpec == mLastHeightSpec
371 mLastWidthSpec = widthSpec;
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) {
64 int previewWidth = MeasureSpec.getSize(widthSpec);
  /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) {
86 int previewWidth = MeasureSpec.getSize(widthSpec);
  /packages/apps/Gallery2/src/com/android/camera/
PreviewFrameLayout.java 77 protected void onMeasure(int widthSpec, int heightSpec) {
78 int previewWidth = MeasureSpec.getSize(widthSpec);
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 183 final int widthSpec = MeasureSpec.makeMeasureSpec(layoutParams.width, MeasureSpec.EXACTLY);
185 mButton.measure(widthSpec, heightSpec);
242 int widthSpec;
255 widthSpec = MeasureSpec.makeMeasureSpec(layoutParams.width, MeasureSpec.EXACTLY);
257 view.measure(widthSpec, heightSpec);
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 534 int widthSpec = 0;
544 widthSpec = -1;
546 widthSpec = getAnchorView().getWidth();
548 widthSpec = mDropDownWidth;
574 mDropDownVerticalOffset, widthSpec, heightSpec);
577 widthSpec = 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) {
179 final int widthMode = MeasureSpec.getMode(widthSpec);
182 Log.w(TAG, "onMeasure: widthSpec " + MeasureSpec.toString(widthSpec) +
190 final int widthSize = MeasureSpec.getSize(widthSpec);
MultiPaneChallengeLayout.java 205 protected void onMeasure(final int widthSpec, final int heightSpec) {
206 if (MeasureSpec.getMode(widthSpec) != MeasureSpec.EXACTLY ||
212 final int width = MeasureSpec.getSize(widthSpec);
247 int adjustedWidthSpec = widthSpec;
269 child.measure(widthSpec, heightSpec);
SlidingChallengeLayout.java 794 protected void onMeasure(int widthSpec, int heightSpec) {
795 if (MeasureSpec.getMode(widthSpec) != MeasureSpec.EXACTLY ||
801 final int width = MeasureSpec.getSize(widthSpec);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ListPopupWindow.java 516 int widthSpec = 0;
525 widthSpec = -1;
527 widthSpec = getAnchorView().getWidth();
529 widthSpec = mDropDownWidth;
555 mDropDownVerticalOffset, widthSpec, heightSpec);
558 widthSpec = ViewGroup.LayoutParams.FILL_PARENT;
577 mPopup.setWindowLayoutMode(widthSpec, heightSpec);
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java     [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageListItemCoordinates.java 260 int widthSpec = MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY);
262 view.measure(widthSpec, heightSpec);
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 778 final int widthSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY);
787 child.measure(widthSpec, heightSpec);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 354 int widthSpec = View.MeasureSpec.makeMeasureSpec(mHeaderWidth, View.MeasureSpec.EXACTLY);
363 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 389 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
392 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]

Completed in 971 milliseconds

1 2 3