我有一个ListFragment
这样的行布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:descendantFocusability="blocksDescendants"
android:focusable="true"
android:focusableInTouchMode="false" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp"
android:orientation="vertical"
android:layout_marginRight="20dp" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_marginLeft="20dp"
android:paddingTop="4dp"
android:layout_marginRight="20dp"
android:background="#2eb199" >
<TextView
android:id="@+id/titleField"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Titel"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#FFFFFF"
android:textSize="20sp"
android:layout_alignParentLeft="true"
android:textStyle="bold" />
<TextView
android:id="@+id/placeField"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:text="Plaats"
android:textColor="#FFFFFF"
android:textSize="20sp"
android:layout_alignParentRight="true"
android:textStyle="bold" />
</RelativeLayout>
<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="146dp"
android:orientation="vertical"
android:background="@drawable/card_bg" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="94dp"
android:orientation="vertical"
android:padding="8dp" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="4dp" >
<TextView
android:id="@+id/clientField"
android:text="Opdrachtgever"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true" />
<TextView
android:id="@+id/datetimeField"
android:text="Datum/Tijd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true" />
</RelativeLayout>
<TextView
android:id="@+id/descriptionField"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="14dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:background="#3e454d" >
<Button
android:id="@+id/detailsButton"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight=".5"
android:background="#3e454d"
android:text="Meer info"
android:textColor="#FFFFFF"
android:clickable="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:textStyle="bold" />
<LinearLayout
android:layout_width="1dp"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:background="#B3B5BD"
android:orientation="vertical" />
<Button
android:id="@+id/joinButton"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight=".5"
android:background="#3e454d"
android:text="Deelnemen"
android:textColor="#FFFFFF"
android:clickable="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
<ImageView
android:id="@+id/selector_arrow"
android:layout_marginTop="16dp"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/selector_arrow"
android:visibility="gone" />
</RelativeLayout>
在这里,我将侦听器设置在 ArrayAdapter 中:
detailsButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (detailsButtonOnClickListener != null) {
detailsButtonOnClickListener.onDetailsButtonClick(position);
} else {
Log.v(TAG, "DetailsButton OnClickListener triggered but no listener is set.");
}
}
});
joinButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (joinButtonOnClickListener != null) {
joinButtonOnClickListener.onJoinButtonClick(currentInvitation.getId());
} else {
Log.v(TAG, "JoinButton OnClickListener triggered but no listener is set.");
}
}
});
但是detailsButton
OnClickListener
除非我detailsButton
先从不同的行单击另一个,否则不会触发第一行的。我确信听众已经设置好并且正在 100% 工作,因为您总是可以detailsButton
从另一行单击。
我该如何解决这个问题?