标签: android events view
我想做的是
MotionEvent e = MotionEvent.obtain( SystemClock.uptimeMillis(),SystemClock.uptimeMillis(), MotionEvent.ACTION_DOWN,x, y, 0); v.dispatchTouchEvent(e);
我想发送触摸事件,如果我知道绝对的x和y轴,我可以得到位于(x,y)坐标的视图吗?