android - 使用 GestureDetector 时出现 NullPointerException

标签 android android-animation gesture

下面是在不同事件发生时为两个不同图像加载帧动画的代码。第一个事件是在 Activity 开始时。其他是 onTouch(),我使用 onDown()onScroll() 的 GestureDetector 问题是我在 OnScroll 时得到了 NullPointerException ()。我发现它没有获取 Y 坐标可能是问题所在。

package com.example.animationtry;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.util.Log;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import android.view.GestureDetector.SimpleOnGestureListener;
import android.widget.ImageView;

public class MainActivity extends Activity
{
    ImageView img,img1;
    AnimationDrawable animation;
    private GestureDetector gestureDetector;


    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        img=(ImageView)findViewById(R.id.image);
        img.post(new Runnable()
        {
            public void run()
            {
                img.setBackgroundResource(R.anim.frameanimation);
                AnimationDrawable frameAnimation =  (AnimationDrawable) img .getBackground();
                frameAnimation.setVisible(false, true);
                frameAnimation.start();
            }
        });
        img.setOnTouchListener(new View.OnTouchListener() 
        {
            public boolean onTouch(View v, MotionEvent event) 
            {
                String img="img";
                gestureDetector = new GestureDetector(new MyGestureDetector(img));
                if (gestureDetector.onTouchEvent(event)) 
                {
                    return true;
                }   
                return false;
            }
        });

        img1=(ImageView)findViewById(R.id.image1);
        img.post(new Runnable()
        {
            public void run()
            {
                img1.setBackgroundResource(R.anim.frameanimation);
                AnimationDrawable frameAnimation =  (AnimationDrawable) img1.getBackground();
                frameAnimation.setVisible(false, true);
                frameAnimation.start();
            }
        });
        img1.setOnTouchListener(new View.OnTouchListener() 
        {
            public boolean onTouch(View v, MotionEvent event) 
            {
                String img1="img1";
                gestureDetector = new GestureDetector(new MyGestureDetector(img1));
                if (gestureDetector.onTouchEvent(event)) 
                {
                    return true;
                }   
                return false;
            }
        });
    }

    class MyGestureDetector extends SimpleOnGestureListener
    {
        private static final int SWIPE_MAX_OFF_PATH = 40;
        private static final int SWIPE_THRESHOLD_VELOCITY = 30;
        String viewname;
        public MyGestureDetector(String view)
        {
            viewname=view;
        }

        @Override
        public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,float velocityY) 
        {
            return true;
        }
        @Override
        public boolean onDown(MotionEvent e) 
        {
            Log.i("View Name",viewname);
            if(viewname.equalsIgnoreCase("img"))
            {
                img.setBackgroundResource(R.anim.clickanimation);
                animation = (AnimationDrawable)img.getBackground();
                animation.setVisible(false, true);
                animation.start();
            }
            else if(viewname.equalsIgnoreCase("img1"))
            {
                img1.setBackgroundResource(R.anim.clickanimation);
                animation = (AnimationDrawable)img1.getBackground();
                animation.setVisible(false, true);
                animation.start();
            }
            return true;
        }

        @Override
        public boolean onScroll(MotionEvent e1, MotionEvent e2,float distanceX, float distanceY) 
        {
            Log.i("y1",Float.toString(e1.getY()));
            Log.i("y2",Float.toString(e2.getY()));
            Log.i("Drag View Name",viewname);
            if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH && Math.abs(distanceY) > SWIPE_THRESHOLD_VELOCITY) 
            {
                if(viewname.equalsIgnoreCase("img"))
                {
                    img.setBackgroundResource(R.anim.draganimaton);
                    animation = (AnimationDrawable)img.getBackground();
                    animation.setVisible(false, true);
                    animation.start();
                }
                else if(viewname.equalsIgnoreCase("img1"))
                {
                    img1.setBackgroundResource(R.anim.draganimaton);
                    animation = (AnimationDrawable)img1.getBackground();
                    animation.setVisible(false, true);
                    animation.start();
                }
                return true;
            }
            return true;
        }
    }
}

下面是 logcat:

01-12 06:12:22.637: E/AndroidRuntime(1062): FATAL EXCEPTION: main
01-12 06:12:22.637: E/AndroidRuntime(1062): java.lang.NullPointerException
01-12 06:12:22.637: E/AndroidRuntime(1062):     at com.example.animationtry.MainActivity$MyGestureDetector.onScroll(MainActivity.java:117)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.view.GestureDetector.onTouchEvent(GestureDetector.java:541)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at com.example.animationtry.MainActivity$4.onTouch(MainActivity.java:69)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.view.View.dispatchTouchEvent(View.java:3881)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:942)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:942)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:942)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:942)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1691)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1125)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.app.Activity.dispatchTouchEvent(Activity.java:2096)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1675)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.view.ViewRoot.deliverPointerEvent(ViewRoot.java:2194)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1878)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.os.Handler.dispatchMessage(Handler.java:99)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.os.Looper.loop(Looper.java:123)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at android.app.ActivityThread.main(ActivityThread.java:3683)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at java.lang.reflect.Method.invokeNative(Native Method)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at java.lang.reflect.Method.invoke(Method.java:507)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
01-12 06:12:22.637: E/AndroidRuntime(1062):     at dalvik.system.NativeStart.main(Native Method)

最佳答案

我遇到了 e1.getY()onScroll() 返回空值的问题,所以我删除了那个检查部分并检查了 SWIPE_MAX_OFF_PATH 使用 onScroll()distanceY 现在可以正常工作了..

package com.example.animationtry;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.util.Log;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import android.view.GestureDetector.SimpleOnGestureListener;
import android.widget.ImageView;

public class MainActivity extends Activity
{
    ImageView img,img1;
    AnimationDrawable animation;
    private GestureDetector gestureDetector;
    private static final int SWIPE_MAX_OFF_PATH = 40;
    private static final int SWIPE_THRESHOLD_VELOCITY = 30;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        img=(ImageView)findViewById(R.id.image);
        img.post(new Runnable()
        {
            public void run()
            {
                img.setBackgroundResource(R.anim.frameanimation);
                AnimationDrawable frameAnimation =  (AnimationDrawable) img .getBackground();
                frameAnimation.setVisible(false, true);
                frameAnimation.start();
            }
        });
        img.setOnTouchListener(new View.OnTouchListener() 
        {
            public boolean onTouch(View v, MotionEvent event) 
            {
                String img="img";
                gestureDetector = new GestureDetector(new MyGestureDetector(img));
                if (gestureDetector.onTouchEvent(event)) 
                {
                    return true;
                }   
                return false;
            }
        });

        img1=(ImageView)findViewById(R.id.image1);
        img.post(new Runnable()
        {
            public void run()
            {
                img1.setBackgroundResource(R.anim.frameanimation);
                AnimationDrawable frameAnimation =  (AnimationDrawable) img1.getBackground();
                frameAnimation.setVisible(false, true);
                frameAnimation.start();
            }
        });
        img1.setOnTouchListener(new View.OnTouchListener() 
        {
            public boolean onTouch(View v, MotionEvent event) 
            {
                String img1="img1";
                gestureDetector = new GestureDetector(new MyGestureDetector(img1));
                if (gestureDetector.onTouchEvent(event)) 
                {
                    return true;
                }   
                return false;
            }
        });
    }

    class MyGestureDetector extends SimpleOnGestureListener
    {
        String viewname;
        public MyGestureDetector(String view)
        {
            viewname=view;
        }

        @Override
        public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,float velocityY) 
        {

            return true;
        }
        @Override
        public boolean onDown(MotionEvent e) 
        {
            Log.i("View Name",viewname);
            if(viewname.equalsIgnoreCase("img"))
            {
                img.setBackgroundResource(R.anim.clickanimation);
                animation = (AnimationDrawable)img.getBackground();
                animation.setVisible(false, true);
                animation.start();
            }
            else if(viewname.equalsIgnoreCase("img1"))
            {
                img1.setBackgroundResource(R.anim.clickanimation);
                animation = (AnimationDrawable)img1.getBackground();
                animation.setVisible(false, true);
                animation.start();
            }
            return true;
        }

        @Override
        public boolean onScroll(MotionEvent e1, MotionEvent e2,float distanceX, float distanceY) 
        {           
            Log.i("Drag View Name",viewname);
            if (Math.abs(distanceY)>SWIPE_MAX_OFF_PATH) 
            {
                Log.i("inside","drag");
                if(viewname.equalsIgnoreCase("img"))
                {
                    img.setBackgroundResource(R.anim.draganimaton);
                    animation = (AnimationDrawable)img.getBackground();
                    animation.setVisible(false, true);
                    animation.start();
                }
                else if(viewname.equalsIgnoreCase("img1"))
                {
                    img1.setBackgroundResource(R.anim.draganimaton);
                    animation = (AnimationDrawable)img1.getBackground();
                    animation.setVisible(false, true);
                    animation.start();
                }
            }
            return true;
        }
    }
}

关于android - 使用 GestureDetector 时出现 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14290802/

相关文章:

android - 下载特定的 maptile 以缓存在 OSMDroid 中

android - 在退出转换之前更新源 Activity

android - android.view.ViewConfiguration 中的一些方法似乎在 Android 5.0.1 中消失了

javascript - 跳跃 Action : some basic info?

安卓媒体播放器 : how to stop a thread before finishing activity

android - 使用 SensorManager 在 OpenGL 中旋转?

android - 只需在 Android ListView 中填充数据库表名

android - layoutParams 不变

java - 显示有动画问题的 ImagesViews

android - 手势不适用于 Android 上的 ListView 项目