Android隐藏ListView的滚动条

2种方式:

1.xml布局中:

android:scrollbars="none"

2.代码中:

listView.setVerticalScrollBarEnabled(false);

你可能感兴趣的:(滚动条,隐藏)