android - Hide RecyclerView scrollbar -
how can remove scrollbar in recyclerview? i've tried mrecyclerview.setscrollbarsize(0);
it's not working. (actually, doesn't anything, whatever value set).
put android:scrollbars="none"
<android.support.v7.widget.recyclerview android:id="@+id/recyclerviewid" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="none" > </android.support.v7.widget.recyclerview>
Comments
Post a Comment