5

为了将图标和文本分组,我将它们分组到一个线性布局中,并为线性布局实现了一个监听器。

<LinearLayout
        android:id="@+id/ll0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="fill_horizontal"
        android:orientation="vertical" >
        <ImageButton
            android:id="@+id/imageButton0"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@null"
            android:src="@drawable/start" />
        <TextView
            android:id="@+id/textView0"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Start"
            android:textAppearance="?android:attr/textAppearanceMedium" />
    </LinearLayout>

我已经通过以下方式实现了监听器:-

l0 = (LinearLayout)findViewById(R.id.ll0);
l0.setOnClickListener(new View.OnClickListener() 
    {
        public void onClick(View v) 
        {
            //Some Code
        }
    });

我面临的问题是我点击图标,听众似乎没有回应。当我单击文本视图和图标之间的空间时,侦听器工作。我希望整个部分都是可点击的,而不是在某个特定点。

4

1 回答 1

6

我认为这ImageButton是一个可点击的视图,并且正在捕获点击,阻止 LinearLayout 接收点击事件。尝试添加android:clickable="false"到定义ImageButton.

但是,更好的答案是使用复合可绘制对象。请参阅如何使用复合可绘制对象而不是包含 ImageView 和 TextView 的 LinearLayout。基本上,您可以添加android:drawableTop="@drawable/start"到定义 the 的 XML 中并完全TextView取消and 。然后你只需处理点击。LinearLayoutImageButtonTextView

于 2013-03-06T21:02:06.520 回答