アイコンとテキストをグループ化するために、それらをlinearlayoutにグループ化し、線形レイアウトのリスナーを実装しました。
<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
}
});
私が直面している問題は、アイコンをクリックすると、リスナーが応答しないように見えることです。テキストビューとアイコンの間のスペースをクリックすると、リスナーが機能しました。特定のポイントではなく、全体をクリック可能にしたいと思います。