How can i get Vertical scrolling in GridView andro

2019-01-28 05:12发布

I am developing an android application with showing images. I am using grid view to show the images in my application.

But default gridview is horizontal scrolling I want to show the images in vertical scrolling grid view.

Please suggest me a way to achieve vertical scrolling in gridview.

Thanks in advance.

1条回答
不美不萌又怎样
2楼-- · 2019-01-28 06:13

Use 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.

Ex.:

<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>
查看更多
登录 后发表回答