2

相対レイアウトを拡張し、onTouchListener を設定する簡単なメソッドを追加しようとしています。

問題は、リスナーを設定した後、呼び出される唯一のイベントがMotionEvent.ACTION_DOWN

他のイベントは呼び出されていません。

カスタム相対レイアウトの私のコードは次のとおりです。

public class MyRelativeLayout extends RelativeLayout {

    public MyRelativeLayout(Context context) {
        super(context);
    }

    public MyRelativeLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public MyRelativeLayout(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public void setOnTouchEvent() {
        this.setOnTouchListener(new OnTouchListener() {

            @Override
            public boolean onTouch(View v, MotionEvent event) {
                Log.d("myTextView", "onTouch event called");
                switch (event.getAction()) {
                case MotionEvent.ACTION_DOWN:
                    //only this event is being called
                    return false;
                default:
                    //other events are not being called
                    return false;
                }
            }
        });

    }

}

xml コードは次のとおりです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <com.example.ontouchtest.MyRelativeLayout
        android:id="@+id/test"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="@string/hello_world" />

</RelativeLayout>

これが MainActivity です。

public class MainActivity extends Activity {
    MyRelativeLayout test;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        test = (MyRelativeLayout) findViewById(R.id.test);
        test.setOnTouchEvent();
    }

}

MotionEventアクションを印刷するときのlogcatから、 0を取得します。

onTouch event called 0

4

1 に答える 1

6

問題は、アクション ダウンの後に戻ることfalseです。にするtrueと、他のイベントも通過します。

于 2013-06-25T07:21:44.960 に答える