事件分发 入口点为Activity中的dispatchTouchEvent(MotionEvent ev) public boolean dispatchTouchEvent(MotionEvent ev) { if (ev.getAction() == MotionEvent.ACTION_DOWN) { onUserInteraction(); } //这个window我们知道是PhoneWindow,那就直接去PhoneWindow吧 if (getWindow().superDispatchTouchEvent(ev)) { r