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
Post a Comment