am 9a2162e6: Merge "Fix synthesizing MotionEvent"
* commit '9a2162e6f29c92e34161accee3e58fda8fd2998b': Fix synthesizing MotionEventmain
commit
606ba2ce5f
|
@ -248,19 +248,15 @@ public class KeyboardAccessibilityDelegate<KV extends KeyboardView>
|
||||||
* Synthesize a touch event from a hover event.
|
* Synthesize a touch event from a hover event.
|
||||||
*
|
*
|
||||||
* @param touchAction The action of the synthesizing touch event.
|
* @param touchAction The action of the synthesizing touch event.
|
||||||
* @param event The base hover event from that the touch event is synthesized.
|
* @param hoverEvent The base hover event from that the touch event is synthesized.
|
||||||
* @return The synthesized touch event of <code>touchAction</code> that has pointer information
|
* @return The synthesized touch event of <code>touchAction</code> that has pointer information
|
||||||
* of <code>event</code>.
|
* of <code>event</code>.
|
||||||
*/
|
*/
|
||||||
protected static MotionEvent synthesizeTouchEvent(final int touchAction,
|
protected static MotionEvent synthesizeTouchEvent(final int touchAction,
|
||||||
final MotionEvent event) {
|
final MotionEvent hoverEvent) {
|
||||||
final long downTime = event.getDownTime();
|
final MotionEvent touchEvent = MotionEvent.obtain(hoverEvent);
|
||||||
final long eventTime = event.getEventTime();
|
touchEvent.setAction(touchAction);
|
||||||
final int actionIndex = event.getActionIndex();
|
return touchEvent;
|
||||||
final float x = event.getX(actionIndex);
|
|
||||||
final float y = event.getY(actionIndex);
|
|
||||||
final int pointerId = event.getPointerId(actionIndex);
|
|
||||||
return MotionEvent.obtain(downTime, eventTime, touchAction, x, y, pointerId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue