Я установил «setOnClickListener» в «OnBindViewHolder», поэтому, когда я нажимаю на элемент, я кое-что сделаю.Но когда я щелкаю элемент, он выдает ошибку, как показано ниже:
java.lang.IllegalStateException: holder.itemView.myAdsRecycleView must not be null
Строка, которая выдает ошибку, находится ниже:
holder.itemView.myAdsRecycleView.layoutManager = myLinearLayout
В чем может быть проблема?Вид элемента и массив не равны нулю?
Полные коды адаптеров указаны ниже,
class adsRecyleAdapter(var category:ArrayList<String>) : RecyclerView.Adapter<adsViewHolder>() {
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): adsViewHolder {
var inflater = LayoutInflater.from(parent.context).inflate(R.layout.ads_menu_single_category_layout,parent,false)
return adsViewHolder(inflater)
}
override fun getItemCount(): Int {
return category.size
}
override fun onBindViewHolder(holder: adsViewHolder, position: Int) {
holder.itemView.txt_ads.text = category[position]
holder.itemView.setOnClickListener(){
if (holder.itemView.txt_ads.text.contains("Estate")){
var array = holder.itemView.resources.getStringArray(R.array.realEstateCategory)
var category_arraylist = ArrayList<String>(9)
for (i in 0..4){
category_arraylist.add(array[i])
}
var myLinearLayout = LinearLayoutManager(holder.itemView.context, LinearLayoutManager.VERTICAL,false)
holder.itemView.myAdsRecycleView.layoutManager = myLinearLayout
var myadapter = adsRecyleAdapter(category_arraylist)
holder.itemView.myAdsRecycleView.adapter = myadapter
}
}
}
}
Также добавлен код держателя ниже,
class adsViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
}
Ниже приведены коды элементов вида,
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ads_category">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/myAdsRecycleView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:background="@color/colorGray"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>