3

I want to design a custom scrollbar but I can't even see the scrollbar in recyclerview, here is my code and I have also followed this question but not able to get the answer from this link

 <android.support.v7.widget.RecyclerView
    android:id="@+id/my_recycler_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="5dp"
    android:scrollbarThumbVertical="@android:color/darker_gray"
    android:scrollbarSize="5dp"
    android:layout_weight="1"
    android:visibility="visible"
    android:scrollbars="vertical" />

1 Answers1

7

you can Increase the size of scrollbar

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/recyclerView"
    android:margin="5dp"
    android:scrollbars="vertical" <!-- type of scrollbar -->
    android:scrollbarThumbVertical="@android:color/darker_gray"  <!--color of scroll bar-->
    android:scrollbarSize="5dp"> <!--width of scroll bar-->

</android.support.v7.widget.RecyclerView>
Gowthaman M
  • 8,057
  • 8
  • 35
  • 54