Searched defs:LayoutManager (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
H A DCustomLayoutManager.java33 public static class LayoutManager extends RecyclerView.LayoutManager { class in class:CustomLayoutManager
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java99 * {@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;
612 * Instantiate and set a LayoutManager, if specified in the attributes.
628 Class<? extends LayoutManager> layoutManagerClass =
629 classLoader.loadClass(className).asSubclass(LayoutManager.class);
630 Constructor<? extends LayoutManager> constructo
6808 public abstract static class LayoutManager { class in class:RecyclerView
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java122 * {@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
728 * Instantiate and set a LayoutManager, if specified in the attributes.
744 Class<? extends LayoutManager> layoutManagerClass =
745 classLoader.loadClass(className).asSubclass(LayoutManager
7250 public abstract static class LayoutManager { class in class:RecyclerView
[all...]

Completed in 77 milliseconds