This is for a touchscreen application. If I press a finger down and
drag it around, I would expect that getPressure and getSize would give
me a different value as I change how hard I press while dragging.
However, both of these methods always return the initial value from
the first MotionEvent that I get in my handler. In other words,
whatever value is returned from getPressure on the first MotionEvent
that has ACTION_DOWN, I get that same value for every subsequent
ACTION_MOVE event all the way through to the final ACTION_UP event.
The same is true for getSize. If I'm actually changing how hard I
press on the screen as I drag my finger around, I want to get changing
values from getPressure. Is this possible? Am I missing something?

This is on a Motorola Droid.

I tried using the Pointer Location application and it also shows the
same behavior, the initial value from getPressure is the value I get
for all subsequent values from getPressure while the finger remains
down. Thanks for your help.

- dave

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to