use of com.boredream.bdcodehelper.view.DividerItemDecoration in project bdcodehelper by boredream.
the class MultiPageLoadPresent method initView.
private void initView() {
srl.setColorSchemeColors(activity.getResources().getColor(R.color.colorPrimary));
rv = (RecyclerView) srl.findViewById(R.id.rv);
LinearLayoutManager layoutManager = new LinearLayoutManager(activity, StaggeredGridLayoutManager.VERTICAL, false);
rv.setLayoutManager(layoutManager);
itemDecoration = new DividerItemDecoration(activity);
rv.addItemDecoration(itemDecoration);
}
Aggregations