关于返回参数类型 Motionevent

public boolean TouchEvent(MotionEvent event); //这个是自己写的接口的方法

然后在try {
Instrumentation instrumentation=new Instrumentation();
instrumentation.sendPointerSync(MotionEvent.obtain(SystemClock.uptimeMillis(),
SystemClock.uptimeMillis(), CmdCode, CmdParam1, CmdParam2, 0));
callback.TouchEvent(//这边该怎么填写啊);

} catch (Exception e) {
e.printStackTrace();

好像是要把这个Instrumentation返回出去 但是上边定义的是个Motionevent(因为boss给的例子的参数 是个Motionevent )

http://segmentfault.com/q/1010000004398587/a-1020000004398891