我正在开发一个显示图像的Android应用程序。我正在使用grid view
在我的应用程序中显示图像。
但默认gridview为horizontal scrolling
我想在vertical scrolling
网格视图中显示图片。
请建议我在gridview中实现垂直滚动的方法。
提前致谢。
答案 0 :(得分:3)
使用android:numColumns="3" // this will force gridview to have 3 columns and if you have more than 3 items in grid view, you can have vertical scrolling.
<强>例:强>
<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" >
</GridView>