Вот вопрос: у меня есть фрагмент, в котором у меня есть представление переработчика с пользовательским адаптером, в котором хранится набор карточек колледжей, в которых указаны идентификатор и название колледжа. У них также есть кнопка на правой стороне. Вот XML-шаблон этой карты:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/gradientEnd"
android:layout_margin="2dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_weight="3"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/college_name"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="EXAMPLE COLLEGE"
android:textSize="18sp"
android:paddingLeft="10dp"
android:paddingTop="10dp"
android:textColor="@color/colorPrimaryDark"
android:fontFamily="sans-serif-medium"/>
<TextView
android:id="@+id/college_id"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="ID: 1234567"
android:textSize="16sp"
android:paddingLeft="10dp"
android:paddingBottom="5dp"
android:textColor="@color/colorPrimaryDark"
android:fontFamily="sans-serif-medium"/>
</LinearLayout>
<Button
android:id="@+id/btn_college_details"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="Details"
android:textStyle="bold"
android:textColor="@color/colorPrimaryDark"
android:fontFamily="sans-serif-medium"
android:background="@drawable/btn_bg"
android:layout_marginBottom="10dp"
android:layout_marginEnd="5dp"
android:padding="5dp"
android:layout_marginTop="8dp"/>
</LinearLayout>
</LinearLayout>
Так как это внутри представления рециркулятора, которое находится внутри фрагмента, когда я пытаюсь создать setOnClickListener
для этой кнопки в onCreateView()
, когда я открываю фрагмент, в котором находится окно рециркулятора, он просто падает. Я предполагаю, что это потому, что представление рециркулятора заполняется внутри фрагмента, в то же время я пытаюсь связываться с кнопкой, и он просто не может ее увидеть, когда я получаю исключение java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.Button.setOnClickListener(android.view.View$OnClickListener)' on a null object reference
. Вот код Java фрагментов:
public class CollegeFragment extends Fragment implements ItemClickListener{
private RecyclerView recyclerView;
private CustomRecyclerAdapter customRecyclerAdapter;
private List<CollegeItem> collegeItemList = new ArrayList<>();
private DatabaseCollege dbCollege;
private EditText cName, cId;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View myFragmentView = inflater.inflate(R.layout.fragment_college, container, false);
dbCollege = new DatabaseCollege(getActivity());
recyclerView = myFragmentView.findViewById(R.id.recycler);
customRecyclerAdapter = new CustomRecyclerAdapter(dbCollege.getCollegeData(), getActivity()); //populate recycler view with college cards
RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(getActivity(), LinearLayoutManager.VERTICAL, false);
recyclerView.setLayoutManager(layoutManager);
recyclerView.setItemAnimator(new DefaultItemAnimator());
recyclerView.setAdapter(customRecyclerAdapter);
customRecyclerAdapter.setItemClickListener(this);
cId = myFragmentView.findViewById(R.id.et_ipeds);
cId.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
CollegeFragment.this.customRecyclerAdapter.getFilter().filter(s);
}
@Override
public void afterTextChanged(Editable s) {
}
});
Button details = myFragmentView.findViewById(R.id.btn_college_details);
details.setOnClickListener(new View.OnClickListener() { //This line causes the crash
@Override
public void onClick(View v) {
//do stuff
}
});
return myFragmentView;
}
@Override
public void onClick(View v, int position) {
String name = collegeItemList.get(position).getName();
String id = collegeItemList.get(position).getId();
}
}
Итак, общий вопрос: как мне написать код, способный нацеливаться на кнопку setOnClickListener, которая находится в сгенерированном элементе представления переработчика, а само представление переработчикавнутри фрагмента?