我正在开发一个显示图像的 android 应用程序。我grid view
用来在我的应用程序中显示图像。
但默认的 gridview 是horizontal scrolling
我想在vertical scrolling
网格视图中显示图像。
请建议我一种在gridview中实现垂直滚动的方法。
提前致谢。
我正在开发一个显示图像的 android 应用程序。我grid view
用来在我的应用程序中显示图像。
但默认的 gridview 是horizontal scrolling
我想在vertical scrolling
网格视图中显示图像。
请建议我一种在gridview中实现垂直滚动的方法。
提前致谢。
采用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>