Skip to content

Instantly share code, notes, and snippets.

@mzgreen
Last active August 29, 2015 14:16
Show Gist options
  • Save mzgreen/892c394d6db47eb3708b to your computer and use it in GitHub Desktop.
Save mzgreen/892c394d6db47eb3708b to your computer and use it in GitHub Desktop.
PartTwoActivity class setting GridLayoutManager
private void initRecyclerView() {
final RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recyclerView);
int paddingTop = Utils.getToolbarHeight(PartTwoActivity.this) + Utils.getTabsHeight(PartTwoActivity.this);
recyclerView.setPadding(recyclerView.getPaddingLeft(), paddingTop, recyclerView.getPaddingRight(), recyclerView.getPaddingBottom());
recyclerView.setLayoutManager(new GridLayoutManager(this, 3));
RecyclerAdapter recyclerAdapter = new RecyclerAdapter(createItemList());
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment