我有这个gridview
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridView1"
android:numColumns="3"
android:gravity="center"
android:columnWidth="50dp"
android:stretchMode="columnWidth"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
但我不知道怎么做
setVerticalScrollBarEnabled(false);
答案 0 :(得分:2)
如果我找到你,你只需要在你的gridview中添加以下行xml
android:scrollbars="none"
跳这是你想要的。
如果是的话,标记为up。 :)