I am designing RecycleView programmatically without using XML,
So I can reuse this code in all projects by just coping the Java file.
Help me to enable scroll bar.
Also how to I get alphabet scroll bar like in contacts app without using any third party API.
RecyclerView recyclerVyuVar = new RecyclerView(this);
recyclerVyuVar.setVerticalScrollBarEnabled(true);
recyclerVyuVar.setScrollBarStyle(View.SCROLLBARS_OUTSIDE_OVERLAY);
recyclerVyuVar.setVerticalFadingEdgeEnabled(true);
After Two full day of struggle I developed Alphabetical Scroll Bar Programatically like in contacts.
U can modify the code and fit based on your requirements.
NamSrnVcc can be any Name of the Activity or Screen you are using.
If u need to place the List View or Recycler View Place it inside the Super Relative layout NamSupRloVav
This is to help all whom I wish not to struggle like me.