29

これが私のコードです。指が画面を下ったときを検出したいので、画面に触れると検出し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
                    }
                }
            }
}
4

5 に答える 5

106

onTouch()メソッドがfalseinitial に応答して返された場合、ACTION_DOWN MotionEventこの特定のジェスチャに属する後続のイベントを受け取りません。代わりに、これらのタッチ イベントは階層内の親に提示されます。

別の言い方をすれば、ジェスチャの開始中 ( )falseから戻った場合、メソッドがこれ以上ジェスチャを表示する必要がないこと、およびジェスチャのイベントを親に渡す必要があることを示します。onTouch()ACTION_DOWNView

以下のコメントで markproxy が指摘しているようにfalseMotionEventが 以外の場合(たとえばACTION_DOWN、 など) に戻っても、現在のジェスチャの後続の が に表示されるのを妨げませんACTION_MOVEMotionEventView

于 2013-02-08T15:59:55.120 に答える
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も参照してください

于 2013-02-08T15:58:15.130 に答える
6

いくつかのこと:

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>
于 2013-02-08T16:14:35.130 に答える