HomeSort by relevance Sort by last modified time
    Searched refs:widthSpec (Results 1 - 25 of 68) 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/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) {
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);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
HierarchicalMove.java 100 int widthSpec = wide ? LayoutParams.WRAP_CONTENT : LayoutParams.MATCH_PARENT;
101 LayoutParams params = new LayoutParams(widthSpec, LayoutParams.WRAP_CONTENT);
  /packages/apps/Camera/src/com/android/camera/
PreviewFrameLayout.java 85 protected void onMeasure(int widthSpec, int heightSpec) {
86 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/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityViewFlipper.java 177 protected void onMeasure(int widthSpec, int heightSpec) {
178 final int widthMode = MeasureSpec.getMode(widthSpec);
181 Log.w(TAG, "onMeasure: widthSpec " + MeasureSpec.toString(widthSpec) +
189 final int widthSize = MeasureSpec.getSize(widthSpec);
MultiPaneChallengeLayout.java 209 protected void onMeasure(final int widthSpec, final int heightSpec) {
210 if (MeasureSpec.getMode(widthSpec) != MeasureSpec.EXACTLY ||
216 final int width = MeasureSpec.getSize(widthSpec);
254 int adjustedWidthSpec = widthSpec;
276 child.measure(widthSpec, heightSpec);
SlidingChallengeLayout.java 813 protected void onMeasure(int widthSpec, int heightSpec) {
814 if (MeasureSpec.getMode(widthSpec) != MeasureSpec.EXACTLY ||
819 final int width = MeasureSpec.getSize(widthSpec);
    [all...]
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 556 int widthSpec = 0;
566 widthSpec = -1;
568 widthSpec = getAnchorView().getWidth();
570 widthSpec = mDropDownWidth;
596 mDropDownVerticalOffset, widthSpec, heightSpec);
599 widthSpec = 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 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/base/core/java/com/android/internal/widget/
SubtitleView.java 213 final int widthSpec = MeasureSpec.getSize(widthMeasureSpec);
215 if (computeMeasurements(widthSpec)) {
  /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 363 int widthSpec = View.MeasureSpec.makeMeasureSpec(mHeaderWidth, View.MeasureSpec.EXACTLY);
372 view.measure(widthSpec, heightSpec);
  /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 389 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
392 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizePagedView.java 387 int widthSpec = MeasureSpec.makeMeasureSpec(mContentWidth, MeasureSpec.AT_MOST);
389 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]

Completed in 3871 milliseconds

1 2 3