我正在一个片段上创建一个RecyclerView,并且其中一个viewHolder(cell)中有一个按钮。但是在模拟器上,单击该按钮后没有任何反应。我在onClickListener的代码中设置了断点,甚至没有跳到断点。
这是我在布局文件中实现按钮的方式:
<Button
android:id="@+id/add_to_list_button"
android:layout_width="35dp"
android:layout_height="35dp"
android:layout_marginBottom="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text=""
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
这是我在适配器中的代码:
Button mAddButton
mAddButton = (Button) itemView.findViewById(R.id.add_to_list_button);
mAddButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.d("test button","testinbtn");
AddContactToList(GlobalPosition);
}
});
private static void AddContactToList(int pos) {
String list_id = mUnsubscribedList.get(pos - 2 - mSubscribedList.size()).getList_id();
apiInstance.AddContactToTheList(contact.getContactID(), list_id);
}
我检查了资源ID,该资源ID是正确的。我已经清理了项目,重新构建了项目,然后重新启动了Android Studio。