机器人。如何在listview / gridview中滚动时隐藏垂直条纹? 如何在所有屏幕中找到这些视图,我在滚动屏幕的顶部和底部有小的水平线?
答案 0 :(得分:0)
只需在xml布局中使用
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:dividerHeight="0dp"
android:overScrollMode="never"
android:scrollbars="none"></ListView>
它适用于你。
答案 1 :(得分:0)
只需在Listview的xml中添加以下行
android:scrollbars="none"
如果你想在班上做这件事
View.setVericalScrollbarEnabled(false) //for vertical scrollbar
View.setHorizontalScrollBarEnabled(false) //for horizontal scrollbar