How to disable grid scrolling?

I have a background image in gridview and I want to disable the gridview scrolling so that it doesn't scroll the image. How can i do this?

+4
source share
2 answers

Try it here if you want to avoid scrolling the GridView.

0
source

use gridview.setVerticalScrollBarEnabled(false) to disable the vertical scroll bar.

+6
source

All Articles