Is it possible to simulate a click on the screen i

2020-07-18 05:46发布

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

4条回答
爷、活的狠高调
2楼-- · 2020-07-18 05:57

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.

查看更多
够拽才男人
3楼-- · 2020-07-18 06:06

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! :)

查看更多
疯言疯语
4楼-- · 2020-07-18 06:07

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);
查看更多
爱情/是我丢掉的垃圾
5楼-- · 2020-07-18 06:11

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();
查看更多
登录 后发表回答