Re: [android-developers] Re: multitouch support again...

2011-12-02 Thread muhamad yamin yamin 2_dsx
Thx On 2011 Des 2 03:17, "al" wrote: OK, your yamtt results mean that your device supports multitouch, but only two simultanious touch points. For your purpose, that should be enough. I might be wrong, but do you return true as the methods result? If not, do so. On 1 Dez., 19:07, John Goche

Re: [android-developers] Re: multitouch support again...

2011-12-02 Thread John Goche
Thanks Achim for the clarification, it makes sense. Regards, John Goche On Fri, Dec 2, 2011 at 4:01 PM, al wrote: > It works because returning true signals that the event has been > consumed. That's the signal for the parent ViewGroup to set this view > as a "target". As a result, the "pointer

[android-developers] Re: multitouch support again...

2011-12-02 Thread al
It works because returning true signals that the event has been consumed. That's the signal for the parent ViewGroup to set this view as a "target". As a result, the "pointer" multitouch events are delivered to this target view. I think, the corresponding code is in ViewGroup.dispatchTouchEvent. Yo

Re: [android-developers] Re: multitouch support again...

2011-12-01 Thread John Goche
On Thu, Dec 1, 2011 at 8:17 PM, al wrote: > OK, your yamtt results mean that your device supports multitouch, but > only two simultanious touch points. For your purpose, that should be > enough. > > I might be wrong, but do you return true as the methods result? If > not, do so. > Thanks, I was

[android-developers] Re: multitouch support again...

2011-12-01 Thread al
OK, your yamtt results mean that your device supports multitouch, but only two simultanious touch points. For your purpose, that should be enough. I might be wrong, but do you return true as the methods result? If not, do so. On 1 Dez., 19:07, John Goche wrote: > Thank you for your reply, > >

Re: [android-developers] Re: multitouch support again...

2011-12-01 Thread John Goche
Thank you for your reply, I downloaded and installed yamtt (Yet Another MutltiTouch Test) from Android Market. When I place the second finger down it's detected but not when I place the third one down. Still not sure what I'm doing wrong in my code... On Thu, Dec 1, 2011 at 10:41 AM, al wrote:

[android-developers] Re: multitouch support again...

2011-12-01 Thread al
At first glance, I don't see a fundamental problem with your code sketch that might cause your problem. I would check if your device is multitouch-capable. There are many free apps in the market to do this, for example yamtt. If the device supports mutitouch, it may help to debug into the onTouchEv