首页 > 其他 > 详细

关于GestureDetector的onFling方法e1返回null问题

时间:2014-06-07 22:45:39      阅读:661      评论:0      收藏:0      [点我收藏+]

解决办法:

  定义一个MotionEvent对象,在ondown里面赋值
   private MotionEvent mLastOnDownEvent = null;


       @Override

        public boolean onDown(MotionEvent arg0) {

         mLastOnDownEvent=arg0;
         return false;
       }

     @Override
     public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
         if(null==e1){
            e1 = mLastOnDownEvent;
              }

          if (e1==null || e2==null){
           return false;

         }
      }

 

关于GestureDetector的onFling方法e1返回null问题,布布扣,bubuko.com

关于GestureDetector的onFling方法e1返回null问题

原文:http://www.cnblogs.com/ethan-coder/p/3774750.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!