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