HomeSort by relevance Sort by last modified time
    Searched defs:widthSpec (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /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);
  /frameworks/base/core/java/android/transition/
TransitionUtils.java 106 int widthSpec = View.MeasureSpec.makeMeasureSpec(right - left, View.MeasureSpec.EXACTLY);
108 copy.measure(widthSpec, heightSpec);
  /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/com/android/internal/widget/
SubtitleView.java 220 final int widthSpec = MeasureSpec.getSize(widthMeasureSpec);
222 if (computeMeasurements(widthSpec)) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBarLayout.java 490 int widthSpec = MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY);
492 child.measure(widthSpec, heightSpec);
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 570 int widthSpec = 0;
580 widthSpec = -1;
582 widthSpec = getAnchorView().getWidth();
584 widthSpec = mDropDownWidth;
610 mDropDownVerticalOffset, widthSpec, heightSpec);
613 widthSpec = ViewGroup.LayoutParams.MATCH_PARENT;
632 mPopup.setWindowLayoutMode(widthSpec, heightSpec);
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BaseCardView.java 647 int widthSpec = MeasureSpec.makeMeasureSpec(mMeasuredWidth, MeasureSpec.EXACTLY);
653 extraView.measure(widthSpec, heightSpec);
690 int widthSpec = MeasureSpec.makeMeasureSpec(mMeasuredWidth, MeasureSpec.EXACTLY);
696 extraView.measure(widthSpec, heightSpec);
    [all...]
GridLayoutManager.java 862 private void measureScrapChild(int position, int widthSpec, int heightSpec,
867 int childWidthSpec = ViewGroup.getChildMeasureSpec(widthSpec,
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ListPopupWindow.java 586 int widthSpec = 0;
595 widthSpec = -1;
597 widthSpec = getAnchorView().getWidth();
599 widthSpec = mDropDownWidth;
625 mDropDownVerticalOffset, widthSpec, heightSpec);
628 widthSpec = ViewGroup.LayoutParams.MATCH_PARENT;
647 mPopup.setWindowLayoutMode(widthSpec, heightSpec);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 359 int widthSpec;
363 widthSpec = View.MeasureSpec
366 widthSpec = View.MeasureSpec
376 view.measure(widthSpec, heightSpec);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewCoordinates.java 288 final int widthSpec = MeasureSpec.makeMeasureSpec(config.getWidth(), MeasureSpec.EXACTLY);
291 view.measure(widthSpec, heightSpec);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
AppBannerView.java     [all...]
  /frameworks/base/core/java/android/app/
ActivityTransitionCoordinator.java 498 int widthSpec = View.MeasureSpec.makeMeasureSpec(width, View.MeasureSpec.EXACTLY);
500 view.measure(widthSpec, heightSpec);
674 int widthSpec = View.MeasureSpec.makeMeasureSpec(state.mMeasuredWidth,
678 view.measure(widthSpec, heightSpec);
    [all...]
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 719 final int widthSpec = MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY);
722 measure(widthSpec, heightSpec);
ClosedCaptionRenderer.java     [all...]
WebVttRenderer.java     [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 200 // final int widthSpec = MeasureSpec.makeMeasureSpec(child.getMeasuredWidth(), MeasureSpec.EXACTLY);
202 // child.measure(widthSpec, heightSpec);
270 int widthSpec = MeasureSpec.makeMeasureSpec(columnWidth, MeasureSpec.EXACTLY);
271 child.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/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 392 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
395 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]
PagedView.java 623 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.EXACTLY);
626 measure(widthSpec, heightSpec);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizePagedView.java 351 int widthSpec = MeasureSpec.makeMeasureSpec(mContentWidth, MeasureSpec.AT_MOST);
353 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerView.java     [all...]

Completed in 2861 milliseconds

1 2 3 4