Android: OnTouch, MotionEvent.ACTION_MOVE is not recognized? Android: OnTouch, MotionEvent.ACTION_MOVE is not recognized? android android

Android: OnTouch, MotionEvent.ACTION_MOVE is not recognized?


If your onTouch() method returns false in response to the initial ACTION_DOWN MotionEvent, it will not receive any of the subsequent events that belong to this particular gesture. Instead those touch events will be presented to the parent in the hierarchy.

To phrase that another way, if you return false from onTouch() during the start of a gesture (the ACTION_DOWN), it signals that the method no longer wants to see any more of the gesture, and that the gesture's events should go to the parent View.

As markproxy points out in the comments below, returning false when the MotionEvent is anything other than an ACTION_DOWN, such as an ACTION_MOVE for example, will not prevent subsequent MotionEvents in the current gesture being presented to the View.


MotionEvent.getAction() returns more than just the flag. Try the following:

int action = arg1.getAction() & MotionEvent.ACTION_MASK;if (action == MotionEvent.ACTION_MOVE) ...

You can also use MotionEvent.getActionMasked().See also http://developer.android.com/reference/android/view/MotionEvent.html


Couple of Things:

1) You need to return a boolean to show you're view consumed the event.

Here is a very simple implementation which works:

package com.test;import android.app.Activity;import android.os.Bundle;import android.util.Log;import android.view.MotionEvent;import android.view.View;import android.view.View.OnTouchListener;public class TestProjActivity extends Activity {    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        final String TAG = "TEST_TAG";        View v = findViewById(R.id.touchTest);        v.setOnTouchListener(new OnTouchListener() {            @Override            public boolean onTouch(View v, MotionEvent event) {                    if (event.getAction()==MotionEvent.ACTION_DOWN) {                        Log.e(TAG,"Down");                        return true;                    }                    if (event.getAction()==MotionEvent.ACTION_MOVE){                        Log.e(TAG,"Move");                        return true;                    }                    if (event.getAction()==MotionEvent.ACTION_UP){                        Log.e(TAG,"Up");                        return true;                    }                    return false;            }        });    }}

Here's the main.xml

::

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <TextView        android:id="@+id/touchTest"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="@string/hello" /></LinearLayout>