Android:OnTouch,MotionEvent.ACTION_MOVE无法识别?

时间:2013-02-08 15:47:12

标签: android ontouchlistener actionevent

这是我的代码,我想检测我的手指何时进入屏幕,所以当我触摸屏幕时,我检测到ACTION_DOWN但是当我用手指向下移动屏幕时,ACTION_MOVE是不承认,ACTION_UP 你知道为什么吗?

        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
                    }
                }
            }
}

5 个答案:

答案 0 :(得分:89)

如果您的onTouch()方法返回false以响应初始ACTION_DOWN MotionEvent,则不会收到属于此特定手势的任何后续事件。相反,这些触摸事件将呈现给层次结构中的父级。

换句话说,如果您在手势开始(false)期间从onTouch()返回ACTION_DOWN,则表示该方法不再需要查看手势,手势的事件应该转到父View

正如markproxy在下面的评论中指出的那样,当false不是MotionEvent时返回ACTION_DOWN,例如ACTION_MOVE,将阻止当前手势中的后续MotionEvent被呈现给View

答案 1 :(得分:9)

MotionEvent.getAction()返回的不仅仅是旗帜。请尝试以下方法:

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

您也可以使用MotionEvent.getActionMasked()。 另请参阅http://developer.android.com/reference/android/view/MotionEvent.html

答案 2 :(得分:5)

夫妻之事:

1)您需要返回一个布尔值来显示您的视图消耗了该事件。

这是一个非常简单的实现:

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;
            }
        });
    }
}

这是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>

答案 3 :(得分:2)

检查onTouch()方法的返回值。

它应该是真的,而不是假的。

return true;
希望它能起作用。

答案 4 :(得分:2)

有两种情况:

1)如果你还设置了OnClickListener() - &gt; onTouch()应返回false。

(如果onTouch()返回true,则OnClickListener()将无效)

2)如果你没有设置OnClickListener() - &gt; onTouch()应该返回true。

(如果onTouch()返回false,则只调用ACTION_DOWN)