recyclerView设置分割线
DividerItemDecoration decoration = new DividerItemDecoration(getContext(), DividerItemDecoration.VERTICAL);
Drawable drawable = ContextCompat.getDrawable(getContext(),R.drawable.divider_recyclerview);
decoration.setDrawable(drawable);
recyclerView.addItemDecoration(decoration);