2016-02-13 73 views

回答

0

只是使用像這樣的XML佈局

<ListView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:dividerHeight="0dp" 
    android:overScrollMode="never" 
    android:scrollbars="none"></ListView> 

它會爲你工作。

0

只需添加下面一行ListView中

android:scrollbars="none" 

的XML如果你想從你的類

View.setVericalScrollbarEnabled(false) //for vertical scrollbar 
View.setHorizontalScrollBarEnabled(false) //for horizontal scrollbar