隐藏RecyclerView滚动条

and*_*rew 21 android android-recyclerview

如何删除recyclerview中的滚动条?我试过mRecyclerView.setScrollBarSize(0);但它不起作用.(实际上,无论我设定的价值如何,它都没有做任何事情).

You*_*her 70

把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>
Run Code Online (Sandbox Code Playgroud)


Par*_*nos 6

尝试在xml中添加以下行:

<androidx.recyclerview.widget.RecyclerView
    ...
    android:overScrollMode="never"
    ...>
</androidx.recyclerview.widget.RecyclerView>
Run Code Online (Sandbox Code Playgroud)