Skip to content

Instantly share code, notes, and snippets.

@pwittchen
Created February 28, 2016 13:30
Show Gist options
  • Save pwittchen/c9130f8e830c2575a379 to your computer and use it in GitHub Desktop.
Save pwittchen/c9130f8e830c2575a379 to your computer and use it in GitHub Desktop.
@Override protected void onCreate(Bundle savedInstanceState) {
recyclerView = (RecyclerView) findViewById(R.id.recycler_view);
layoutManager = new LinearLayoutManager(this);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(layoutManager);
// set your custom adapter
recyclerView.setAdapter(new MyAdapter(items));
// add InfiniteScrollListener as OnScrollListener
recyclerView.addOnScrollListener(createInfiniteScrollListener());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment