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

/frameworks/support/paging/runtime/src/main/java/androidx/paging/
H A DPagedListAdapter.java36 * PagedListAdapter listens to PagedList loading callbacks as pages are loaded, and uses DiffUtil on
70 * class UserAdapter extends PagedListAdapter<User, UserViewHolder> {
80 * // Null defines a placeholder item - PagedListAdapter will automatically invalidate
110 public abstract class PagedListAdapter<T, VH extends RecyclerView.ViewHolder> class in inherits:RecyclerView.Adapter
117 PagedListAdapter.this.onCurrentListChanged(currentList);
122 * Creates a PagedListAdapter with default threading and
125 * Convenience for {@link #PagedListAdapter(AsyncDifferConfig)}, which uses default threading
131 protected PagedListAdapter(@NonNull DiffUtil.ItemCallback<T> diffCallback) { method in class:PagedListAdapter
137 protected PagedListAdapter(@NonNull AsyncDifferConfig<T> config) { method in class:PagedListAdapter
183 * PagedListAdapter wil
[all...]

Completed in 154 milliseconds