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

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -