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
  • 77,470
  • 19
  • 176
  • 187
user687022
  • 169
  • 1
  • 2
  • 11

2 Answers2

5

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

CoolBeans
  • 20,350
  • 10
  • 83
  • 99
user732134
  • 117
  • 1
0

Try here if you want avoid GridView scrolling.

dalemncy
  • 567
  • 6
  • 24
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