I wanted to remove the line that divides the sections how can I do this?
I suggest you look this up on StackOverflow. There, you're the most likely to receive help with this.
@danieldhop
RecyclerView recycle =(RecyclerView) findViewById(R.id.recyclerView);
recycle.addItemDecoration(new DividerItemDecoration(context, 0));
Most helpful comment
I suggest you look this up on StackOverflow. There, you're the most likely to receive help with this.