7

Is it possible to simulate a "click" (touch screen) by coordinates or on a view element?

TyrionLannister
  • 103
  • 1
  • 3
  • 7
  • what would this "simulation" produce? – Yevgeny Simkin May 20 '13 at 10:25
  • For example: If my app is a calculator I want "programming", you press "2" "+" "3" and "=" That is, simulate pressing on those 4 buttons. That is, the user will see without pressing anything like the "2" button is pressed alone, then the "+" ... – TyrionLannister May 20 '13 at 15:37

4 Answers4

5

It is possible to simulate touch events on android screen. If you have the coordinates of the view then you can generate touch events by using adb shell commands. For e.g-

adb shell input tap x y

where x and y are your coordinates. You can run this command from terminal. If you want to run the command from android code then use "/system/bin/ input tap x y" and run this by using Runtime.getRuntime() method. For details please reply, happy to help! :)

Neeraj Kumar
  • 771
  • 2
  • 16
  • 37
suv
  • 171
  • 3
  • 15
3

As azdev suggests, try this:

    view.setOnTouchListener(new OnTouchListener()
{
    public boolean onTouch(View v, MotionEvent event)
    {
        Toast toast = Toast.makeText(
            getApplicationContext(), 
            "View touched", 
            Toast.LENGTH_LONG
        );
        toast.show();

        return true;
    }
});


// 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);
Community
  • 1
  • 1
Basim Sherif
  • 5,384
  • 7
  • 48
  • 90
2

presumably you have something that you wish to invoke via a click. So... if it's an actual button you can call performClick() on it. If it's not a button, then just call whatever the method you wish to execute is, when the conditions that you expect are met. It might help if you offered a little more details as to what you're actually trying to do.

Yevgeny Simkin
  • 27,946
  • 39
  • 137
  • 236
0

On a View, yes. By coordinates, a la Java Robot, not that I'm aware.

For example:

Button buttonFoo = (Button)findViewById(R.id.button_foo);
buttonFoo.performClick();
MarsAtomic
  • 10,436
  • 5
  • 35
  • 56