1
vote
2answers
1k views

Change background color of items in gridview on touch

I have a gridView layout which is populated with textView elements. I have a onTouch() implementation for gridView where the cells that are touched upon need to change background color. Below is my ...
0
votes
1answer
436 views

Android gridview don't trigger onItemClickListener

I have read many post about this problem, usually due to the inclusion of clickable objects in the gridview but that's not my case. I have a framelayout with a imageview and a gridview, I moves both ...
0
votes
2answers
332 views

Scroll in gridView make view shake

I have a layout (which extends a framelayout) with a gridview and an imageview. I scroll through the layout with an onTouchListener,. In my Galaxy Nexus it works fine, but in AVD and other devices ...
0
votes
1answer
131 views

Simultaneous GridView button events/determining which button has been touched

I'm having a hard time trying to figure this out. I have a gridview of 8 buttons. At the moment I'm using an onItemClickListener to trigger the buttons actions, however this produces two problems for ...
0
votes
1answer
537 views

OnTouchListener on GridView elements

I'm trying to develop a kind of applications drawer. I use a gridview with an adapter to draw the icons. I'd like to implement drap&drop on them so I wrote an ontouchlistener that works fine on ...
0
votes
3answers
8k views

Android beginner: Touch events in android gridview

I am using the following code to do things with gridview(slightly modified from http://developer.android.com/resources/tutorials/views/hello-gridview.html). I want to replace the onClicklistener and ...