Android: OnTouch, MotionEvent.ACTION_MOVE não é reconhecido?

Aqui está o meu código, eu quero detectar quando meu dedo desce pela tela, então quando eu toco na tela eu detecto oACTION_DOWN mas quando eu abro a tela com o dedoACTION_MOVE não é reconhecido, nemACTION_UP Você sabe por quê?

        float x=0;
protected void onCreate(Bundle savedInstanceState) {
        do things

        ImageView image2 = (ImageView) findViewById(R.id.imageView3);
        image2.setOnTouchListener(new OnTouchListener(){

        @Override
        public boolean onTouch(View arg0, MotionEvent arg1) {
            if (arg1.getAction()==MotionEvent.ACTION_DOWN) {

                x=arg1.getX();
            }
            else {
                if (arg1.getAction()==MotionEvent.ACTION_MOVE){
                    if (arg1.getX()>x) {
                    do things
                    }
                }
                else {
                    if (arg1.getAction()==MotionEvent.ACTION_UP){
                        do things
                    }
                }
            }
}

questionAnswers(4)

yourAnswerToTheQuestion