67.13 Initializing the RecyclerView
Add the final setup method to initialize and configure the RecyclerView and adapter as follows:
.
.
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
.
.
private void recyclerSetup() {
adapter = new ProductListAdapter(R.layout.product_list_item);
binding.productRecycler.setLayoutManager(
new LinearLayoutManager(getContext()));
binding.productRecycler.setAdapter(adapter);
}
.
.
}