HomeSort by relevance Sort by last modified time
    Searched defs:measure (Results 151 - 175 of 307) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 108 mTabLayout.measure(MeasureSpec.UNSPECIFIED, heightMeasureSpec);
403 // Re-measure if we went beyond our maximum size.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
KeyboardShortcuts.java 600 shortcutsKeyView.measure(
    [all...]
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
RenderTests.java 542 // Do an only-measure pass
544 session.measure();
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
BaseCardView.java 705 extraView.measure(widthSpec, heightSpec);
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ActionMenuView.java 338 // If this is one of our views, expand and measure at the larger size.
377 child.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
390 * Measure a child view to fit within cell-based formatting. The child's width
395 * @param child Child to measure
419 child.measure(childWidthSpec, childHeightSpec);
432 child.measure(MeasureSpec.makeMeasureSpec(targetWidth, MeasureSpec.EXACTLY),
ActivityChooserView.java 790 // want to measure all of them since after expansion they should fit.
803 itemView.measure(widthMeasureSpec, heightMeasureSpec);
AppCompatSpinner.java 555 // Make sure the number of items we'll measure is capped. If it's a huge data set
573 itemView.measure(widthMeasureSpec, heightMeasureSpec);
DropDownListView.java 265 * @param widthMeasureSpec The width measure spec to be given to a child's
266 * {@link View#measure(int, int)}.
338 child.measure(widthMeasureSpec, heightMeasureSpec);
340 // Since this view was measured directly against the parent measure
341 // spec, we must measure it again before reuse.
ListPopupWindow.java     [all...]
ScrollingTabContainerView.java 120 mTabLayout.measure(MeasureSpec.UNSPECIFIED, heightMeasureSpec);
441 // Re-measure if we went beyond our maximum size.
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
RecyclerViewBasicTest.java 78 measure(); method
81 private void measure() { method in class:RecyclerViewBasicTest
82 mRecyclerView.measure(View.MeasureSpec.AT_MOST | 320, View.MeasureSpec.AT_MOST | 240);
110 measure(); method
117 measure(); method
125 measure(); method
133 measure(); method
141 measure(); method
149 measure(); method
157 measure(); method
167 measure(); method
352 measure(); method
401 measure(); method
528 measure(); method
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
PinnedHeaderListView.java 380 view.measure(widthSpec, heightSpec);
  /packages/apps/Dialer/java/com/android/contacts/common/list/
PinnedHeaderListView.java 323 view.measure(widthSpec, heightSpec);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLView.java 365 public void measure(int widthSpec, int heightSpec) { method in class:GLView
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayout.java 218 child.measure(childWidthMeasureSpec, childheightMeasureSpec);
Folder.java 166 mFolderName.measure(measureSpec, measureSpec);
877 mContent.measure(contentWidthSpec, contentHeightSpec);
879 mFolderName.measure(contentWidthSpec
    [all...]
AppsCustomizePagedView.java 391 // Force a measure to update recalculate the gaps
395 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
ButtonDropTarget.java 155 message.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragView.java 186 // Force a measure, because Workspace uses getMeasuredHeight() before the layout pass
188 measure(ms, ms); method
  /packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java 101 * We'll calculate the baseline of this layout as we measure vertically; for
439 * @return True to measure children with a weight using the minimum
455 * @param enabled True to measure children with a weight using the
819 // measurement on any children, we need to measure them now.
858 child.measure(childWidthMeasureSpec,
862 // Measure for this first time here
863 child.measure(childWidthMeasureSpec,
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewCoordinates.java 257 // Show/hide optional views before measure/layout call
291 view.measure(widthSpec, heightSpec);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripView.java 317 container.measure(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 308 // Measure the indentation of the start node such that we can indent
319 // for </baz>. We don't measure the depth of <bar/>, a child of the start node,
323 indentationLevels = m.measure(initialDepth, root);
672 * Utility class which can measure the indentation strings for various node levels in
692 * Measure the various depths found in the range (defined in the constructor)
702 public String[] measure(int initialDepth, Node root) { method in class:AndroidXmlFormattingStrategy.IndentationMeasurer
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
Folder.java 253 mFooter.measure(measureSpec, measureSpec);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
FilmstripView.java 464 * Forwarding of {@link android.view.View#measure(int, int)}.
466 public void measure(int widthSpec, int heightSpec) { method in class:FilmstripView.ViewItem
467 mView.measure(widthSpec, heightSpec);
761 Log.w(TAG, "measureViewItem() - Trying to measure a null item!");
772 item.measure(MeasureSpec.makeMeasureSpec(dim.x, MeasureSpec.EXACTLY),
783 // Either width or height is unknown, can't measure children yet.
793 // Measure zoom view
794 mZoomView.measure(MeasureSpec.makeMeasureSpec(widthMeasureSpec, MeasureSpec.EXACTLY),
    [all...]

Completed in 1736 milliseconds

1 2 3 4 5 67 8 91011>>