0

因此,在开发我的 Android 应用程序时,我遇到了一个有点古怪的行为,我很好奇它为什么会发生。当我执行以下操作时,不会注册任何触摸事件:

mInflatedLayout = getLayoutInflater().inflate(R.layout.my_layout, null, false);
mInflatedLayout.setOnTouchListener(new OnTouchListener() {
    public boolean onTouch(View v, MotionEvent event) {
        Log.e(TAG, "Hello world");
        return false;
    }
});

但是,当我执行以下操作时,我确实注册了触摸事件:

mInflatedLayout = getLayoutInflater().inflate(R.layout.my_layout, null, false);
mInflatedLayout.findViewById(R.id.child_view)
    .setOnTouchListener(new OnTouchListener() {
        public boolean onTouch(View v, MotionEvent event) {
            Log.e(TAG, "Hello world");
            return false;
        }
});

注意:为简单起见,上面的代码是对我的实际应用程序的伪代码重写。随意忽略任何会导致编译时错误的东西。

我的问题是,为什么会发生这种情况?我愿意猜测这里有一些非常简单的事情我错过了,但我对那是什么感到有点困惑。

编辑:这是我正在使用的布局文件。对于它的价值,视图本身被显示为 ListView 的空视图。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

<include
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    layout="@layout/header_view" />

<LinearLayout
    android:id="@+id/child_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:paddingRight="?baseGapSize"
    android:paddingLeft="?baseGapSize"
    android:orientation="vertical" >


    <CustomFrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/selector_white_rounded_rect_inactive"
        android:paddingBottom="?baseGapSize"
        android:paddingTop="?baseGapSize" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:textAppearance="@style/StandardLightText" />
    </CustomFrameLayout>

    <CustomRelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/selector_white_rounded_rect_inactive" >

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:contentDescription="@string/take_a_photo"
            android:paddingBottom="?baseGapSize"
            android:paddingTop="?baseGapSize"
            android:src="@drawable/camera_with_plus" />
    </CustomRelativeLayout>
</LinearLayout>

4

1 回答 1

2

您的布局可能不会暴露 - 整个屏幕可能被子视图占据,因此它后面的布局永远无法触摸......或者您可能有

android:clickable="true" //in childview

或者

child_view.setClickable(true);

导致您的布局,而不是触发触摸事件。尝试删除它。

于 2013-08-01T04:52:39.937 回答