2

ScrollView の子をクリックすると、コンテナーで onTouch イベントがトリガーされません。

Galaxy タブ 10.1 で API 12 を使用しています。

誰でも助けることができますか?

ありがとう

アクティビティ

public class TestActivity extends Activity{

    @Override
    public void onCreate(Bundle bundle) {
        super.onCreate(bundle);
        setContentView(R.layout.dude);

        LinearLayout mylayout = (LinearLayout) findViewById(R.id.mylayout);        

        mylayout.setOnTouchListener(new OnTouchListener () {
            public boolean onTouch(View view, MotionEvent event) {

                // Only called when touched outside the ScrollView

                if (event.getAction() == android.view.MotionEvent.ACTION_DOWN) {
                    /* do stuff */
                } else if (event.getAction() == android.view.MotionEvent.ACTION_UP) {
                    /* do stuff */
                }
                return true;
            }
        });        
    }
}

レイアウト

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mylayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:gravity="center"
        android:text="Touch here trigger parent&apos;s onTouch"
        android:textColor="#000000"
        android:textSize="40sp" />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <TextView
                android:layout_width="match_parent"
                android:layout_height="1000dp"
                android:background="#b00000"
                android:gravity="center"
                android:text="Touch here DOES NOT trigger parent&apos;s onTouch"
                android:textColor="#000000"
                android:textSize="40sp" />
        </RelativeLayout>
    </ScrollView>

</LinearLayout>

ここに画像の説明を入力

4

3 に答える 3

1
mylayout.setOnTouchListener(new OnTouchListener () {
            public boolean onTouch(View view, MotionEvent event) {

                // Only called when touched outside the ScrollView

                if (event.getAction() == android.view.MotionEvent.ACTION_DOWN) {
                    /* do stuff */
                    return true;
                } else if (event.getAction() == android.view.MotionEvent.ACTION_UP) {
                    /* do stuff */
                    return true;
                }
                return false;
            }
        });

これは機能するはずです...しかし、激しく投げると自動スクロールがなくなります...ドラッグした分だけ移動する粘着性のあるスクロールになります。

于 2013-04-03T03:44:12.750 に答える
0

ONE OnClickListener を作成して、すべての子に追加しようとしましたか? 多分これはあなたを解決するかもしれません.ScrollViewが子をスクロール可能にするので、クリックするための独自の領域がありません.(私が間違っている場合は修正してください^^)

于 2012-04-23T15:30:41.067 に答える