6

我有一个 ImageButton 和一个 TextView 包装在这样的 LinearLayout 中:

    <LinearLayout android:orientation="vertical"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_weight="20" android:gravity="center"
        android:clickable="true" android:id="@+id/action_showhide">
        <ImageButton android:id="@+id/test"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:src="@drawable/ic_toggle_hide_states" android:background="@null"></ImageButton>
        <TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:text="@string/txtHide"
            android:textColor="@drawable/orange" android:textStyle="bold"></TextView>
    </LinearLayout>

ImageButton 由用于正常、聚焦和按下状态的自定义可绘制对象支持。我想允许用户单击 LinearLayout 中的任意位置来触发 OnClick 事件。下面的代码显示了 OnClickListener 的设置:

    final LinearLayout actionHide = (LinearLayout) findViewById(R.id.action_showhide);
    actionHide.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Log.d(AppAdvocate.TAG, "Event caught");
        }
    });

当用户单击 TextView 上的任意位置但当用户单击 ImageButton 时,该代码有效,该事件不会冒泡到 LinearLayout。我没有为按钮定义 onClickListener。我希望我的 ImageButton 的 drawable 发生变化,所以我不想将其设置为 clickable=false。有没有办法让活动冒泡?

4

4 回答 4

4

为了使其LinearLayout可点击,您需要android:focusable="false"在其所有子元素上进行设置。

于 2013-01-29T19:29:59.420 回答
0

在 ImageButton 上设置 android::clickable="false"。这应该会有所帮助。

于 2014-09-19T06:23:45.417 回答
0

如果你真的不想让按钮不可点击,你可以只为按钮添加一个监听器并执行与 LinearLayout onClick 相同的操作。在用户看来,它就像是一个大按钮。

于 2010-08-25T22:13:09.457 回答
0

据我了解,您将需要以下内容:

    <LinearLayout android:orientation="vertical"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_weight="20" android:gravity="center"
        android:clickable="true" android:id="@+id/action_showhide">
        <ImageButton android:id="@+id/test"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:src="@drawable/ic_toggle_hide_states" android:background="@null">         </ImageButton>
        <TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:text="@string/txtHide"
            android:textColor="@drawable/orange" android:textStyle="bold"
android:onClick="viewClicked"></TextView>
    </LinearLayout>

之后,您创建函数:

public void viewClicked(View v){

    switch (v.getId())
    {
        case R.id.action_showhide:
            //do something
            break;
        case R.id.action_showhide:
            //do something
            break;
    }

}
于 2013-05-13T09:10:23.060 回答