Closed GoogleCodeExporter closed 8 years ago
First implementation of getPointerCount() is API Level 5
http://developer.android.com/reference/android/view/MotionEvent.html#getPointerC
ount%28%29
Original comment by sresch2009@gmail.com
on 12 Jul 2010 at 8:43
Did you compile from the source (svn) or did you use the library?
Original comment by anton.he...@gmail.com
on 13 Jul 2010 at 7:35
I used your lib 2.0.3. Should the problem be resolved in the svn trunk?
Original comment by sresch2009@gmail.com
on 13 Jul 2010 at 7:42
Can you confirm this is still broken sresch2009?
For me, it works fine on 1.5 ...
Original comment by rtaylor205@gmail.com
on 25 Jul 2010 at 8:43
If I run 2.0.3 I get the Exception, so I tried the svn trunk (r358) and changed
your MotionWrappers. Now it works on my Samsung Galaxy (1.5)...
-> MotionWrapper5.getPointerCount() and MotionWrapper8.getPointerCount()
return motionEvent.getPointerCount();
replaced by
return 1; // cause samsung galaxy doesn't support multitouch
Original comment by sresch2009@gmail.com
on 25 Jul 2010 at 1:14
This is fixed now, without needing the hack above!
:)
Original comment by rtaylor205@gmail.com
on 29 Jul 2010 at 7:08
Original issue reported on code.google.com by
sresch2009@gmail.com
on 12 Jul 2010 at 8:41