HomeSort by relevance Sort by last modified time
    Searched defs:LayoutManager (Results 1 - 6 of 6) sorted by null

  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
CustomLayoutManager.java 33 public static class LayoutManager extends RecyclerView.LayoutManager {
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
LayoutManager.java 27 public class LayoutManager extends ZLinkedList<Widget>
71 public LayoutManager() {
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
BaseWrapContentWithAspectRatioTest.java 163 RecyclerView.LayoutManager.chooseSize(wSpec, desiredW, 0),
164 RecyclerView.LayoutManager.chooseSize(hSpec, desiredH, 0));
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
WearableListView.java 188 setLayoutManager(new LayoutManager());
270 setLayoutManager(new LayoutManager());
593 LayoutManager layoutManager = (LayoutManager) getLayoutManager();
594 layoutManager.setCustomSmoothScroller(smoothScroller);
596 layoutManager.clearCustomSmoothScroller();
796 LayoutManager layoutManager = (LayoutManager) getLayoutManager()
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
RecyclerView.java 99 * {@link LayoutManager} to be able to detect data set changes in batches during a layout
100 * calculation. This saves LayoutManager from tracking adapter changes to calculate animations.
107 * position from the LayoutManager's perspective.</li>
133 * When writing a {@link LayoutManager} you almost always want to use layout positions whereas when
288 * Handles abstraction between LayoutManager children and RecyclerView children
333 @VisibleForTesting LayoutManager mLayout;
562 // Create the layoutManager if specified.
612 * Instantiate and set a LayoutManager, if specified in the attributes.
628 Class<? extends LayoutManager> layoutManagerClass =
629 classLoader.loadClass(className).asSubclass(LayoutManager.class)
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
RecyclerView.java 122 * {@link LayoutManager} to be able to detect data set changes in batches during a layout
123 * calculation. This saves LayoutManager from tracking adapter changes to calculate animations.
130 * position from the LayoutManager's perspective.</li>
156 * When writing a {@link LayoutManager} you almost always want to use layout positions whereas when
324 * Handles abstraction between LayoutManager children and RecyclerView children
369 @VisibleForTesting LayoutManager mLayout;
421 * {@link LayoutManager#onItemsChanged(RecyclerView)} should be called during the subsequent
639 // Create the layoutManager if specified.
728 * Instantiate and set a LayoutManager, if specified in the attributes.
744 Class<? extends LayoutManager> layoutManagerClass
    [all...]

Completed in 454 milliseconds