android - Disabling GridView scrolling -


i have gridview of more 10 rows. reference chart user unable scroll manually. gridview should scroll down in particular time period. have that? possible make gridview smoothscroll? 1 more question have that. how can access gridview adapter class.?

i have solved disabling of gridview scroll by

gridview.setontouchlistener(new ontouchlistener(){  @override   public boolean ontouch(view v, motionevent event)    {      if(event.getaction()==motionevent.action_move){ return true; }       return false; } }); 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -