Skip to content

Instantly share code, notes, and snippets.

@muratcanbur
Created March 11, 2015 20:39
Show Gist options
  • Save muratcanbur/62f8c8b4a3e47ff61b5d to your computer and use it in GitHub Desktop.
Save muratcanbur/62f8c8b4a3e47ff61b5d to your computer and use it in GitHub Desktop.
private void initRecyclerView(View view) {
RecyclerView recyclerView = (RecyclerView) view.findViewById(R.id.recyclerView);
recyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
RecyclerAdapter recyclerAdapter = new RecyclerAdapter();
recyclerView.setAdapter(recyclerAdapter);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment