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

/frameworks/support/paging/common/src/main/java/androidx/paging/
H A DPagedList.java36 * A PagedList is a {@link List} which loads its data in chunks (pages) from a {@link DataSource}.
38 * {@link #loadAround(int)}. To display a PagedList, see {@link PagedListAdapter}, which enables the
39 * binding of a PagedList to a {@link androidx.recyclerview.widget.RecyclerView}.
42 * All data in a PagedList is loaded from its {@link DataSource}. Creating a PagedList loads the
44 * background thread. The constructed PagedList may then be passed to and used on the UI thread.
48 * A PagedList initially presents this first partial load as its content, and expands over time as
54 * PagedList can present data for an unbounded, infinite scrolling list, or a very large but
55 * countable list. Use {@link Config} to control how many items a PagedList loads, and when.
58 * {@link androidx.lifecycle.LiveData}<PagedList>, i
114 public abstract class PagedList<T> extends AbstractList<T> { class in inherits:AbstractList
143 PagedList(@NonNull PagedStorage<T> storage, method in class:PagedList
[all...]

Completed in 448 milliseconds