码迷,mamicode.com
首页 > 其他好文 > 详细

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

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

标签:c   style   a   问题   line   it   

解决办法:

  定义一个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问题

标签:c   style   a   问题   line   it   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!