Using Glide Library with a Fragment adapter
问题 I have an adapter class that is being used to populate the recyclerview item with cardviews. This RecyclerView is located under a fragment. Inside this adapter, I am trying to bind an image to a imageview which is under the cardview layout. I am trying to achieve that under the following method which is in the adapter class: public void onBindViewHolder(@NonNull ProductViewHolder holder, int position) { Product product = myProducts.get(position); holder.productTitle.setText(product