How to programmatically trigger the touch event in android?

AndroidTouchGesture RecognitionGestures

Android Problem Overview


I would like to trigger a touch event like this:

First the finger is touch down at the (0,50%) of the screen and slide to the (50%,50%) of the screen, and exit (move the finger off the screen)

I have found some thing like this:

MotionEvent event = MotionEvent.obtain(downTime, eventTime, action, x, y, pressure, size, metaState, xPrecision, yPrecision, deviceId, edgeFlags);

onTouchEvent(event);

However, how to emulate the above case? Do I need to create 2 event ? onTouchDown , onMove etc.... ? Thanks for helping.

Android Solutions


Solution 1 - Android

// Obtain MotionEvent object
long downTime = SystemClock.uptimeMillis();
long eventTime = SystemClock.uptimeMillis() + 100;
float x = 0.0f;
float y = 0.0f;
// List of meta states found here:     developer.android.com/reference/android/view/KeyEvent.html#getMetaState()
int metaState = 0;
MotionEvent motionEvent = MotionEvent.obtain(
    downTime, 
    eventTime, 
    MotionEvent.ACTION_UP, 
    x, 
    y, 
    metaState
);

// Dispatch touch event to view
view.dispatchTouchEvent(motionEvent);

Solution 2 - Android

And here is the clean version:

public void TouchView(View view)
{
    view.DispatchTouchEvent(MotionEvent.Obtain(SystemClock.UptimeMillis(), SystemClock.UptimeMillis(), (int)MotionEventActions.Down, 0, 0, 0));
    view.DispatchTouchEvent(MotionEvent.Obtain(SystemClock.UptimeMillis(), SystemClock.UptimeMillis(), (int)MotionEventActions.Up, 0, 0, 0));
}

PS: This is a xamarin android solution but you can easily modify it for java

Solution 3 - Android

To add to the excellent answer by @bstar55 above - if what you want is to create a 'tap' event, e.g, a user tapping on a view, then you need to simulate the user touching the screen and then removing their finger in a short time frame.

To do this you 'dispatch' an ACTION_DOWN MotionEvent followed after a short time by an ACTION_UP MotionEvent.

The following example, in Kotlin, is tested and worked reliably:

   //Create amd send a tap event at the current target loctaion to the PhotoView
   //From testing (on an original Google Pixel) a tap event needs an ACTION_DOWN followed shortly afterwards by
   //an ACTION_UP, so send both events
   //First, create amd send the ACTION_DOWN MotionEvent
   var originalDownTime: Long = SystemClock.uptimeMillis()
   var eventTime: Long = SystemClock.uptimeMillis() + 100
   var x = your_X_Value
   var y = your_Y_Value 
   var metaState = 0
   var motionEvent = MotionEvent.obtain(
           originalDownTime,
           eventTime,
           MotionEvent.ACTION_DOWN,
           x,
           y,
           metaState
    )
    var returnVal = yourView.dispatchTouchEvent(motionEvent)
    Log.d(TAG,"rteurnVal: " + returnVal)

    //Create amd send the ACTION_UP MotionEvent
    eventTime= SystemClock.uptimeMillis() + 100
    motionEvent = MotionEvent.obtain(
           originalDownTime,
           eventTime,
           MotionEvent.ACTION_UP,
           x,
           y,
           metaState
     )
     returnVal = yourView.dispatchTouchEvent(motionEvent)
     Log.d(TAG,"rteurnVal: " + returnVal)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser782104View Question on Stackoverflow
Solution 1 - Androidbstar55View Answer on Stackoverflow
Solution 2 - AndroidSubqueryCrunchView Answer on Stackoverflow
Solution 3 - AndroidMickView Answer on Stackoverflow