文章实现的功能是:在ListView的Item上从右向左滑时,出现删除按钮,点击删除按钮把Item删除。 看过文章后,感觉没有必要把dispatchTouchEvent()和onTouchEvent()两个方法都重写,只要重写onTouchEvent就好了。于是对代码作了一些调整: public class MyListView extends ListView { private static final String TAG = MyListView; private int mTouchSlop; private int mXDown; private int mYDown;