Verified
Status Update
Comments
yb...@google.com <yb...@google.com>
cc...@google.com <cc...@google.com>
cc...@google.com <cc...@google.com> #2
Good catch, fixed in PagedListAdapter / PagedListAdapterHelper javadocs and the intro page.
Will go out with next docs push.
Will go out with next docs push.
Description
Current code:
public MyViewModel(UserDao userDao) {
usersList = LivePagedListBuilder<>(
userDao.usersByLastName(), /* page size */ 20).build();
should be:
public MyViewModel(UserDao userDao) {
usersList = new LivePagedListBuilder<>(
userDao.usersByLastName(), /* page size */ 20).build();