5

I have a background image in a gridview and I want to disable the scroll of the gridview, so that it doesnt scroll the image. How would I go about doing this?

Perception
  • 79,279
  • 19
  • 185
  • 195
user687022
  • 169
  • 1
  • 2
  • 11

2 Answers2

6

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

CoolBeans
  • 20,654
  • 10
  • 86
  • 101
user732134
  • 127
  • 1
0

Try here if you want avoid GridView scrolling.

dalemncy
  • 609
  • 8
  • 26
Fadhlan
  • 1,144
  • 14
  • 14
  • gridview.setOnTouchListener(new OnTouchListener(){ @Override public boolean onTouch(View v, MotionEvent event) { if(event.getAction() == MotionEvent.ACTION_MOVE){ return true; } return false; } }); – Makvin Jan 05 '18 at 11:33