Kotiln: pass data from adapter to activity
问题 I try to pass my data from the adapter to my other activity with a putExtra but when I click on an item in my list to move to my second activity , no data is retrieved and the default text I put in is not displayed. another way to do? or What do I miss about it? Here my code : My onBindViewHolder : override fun onBindViewHolder(holder: AlbumsListViewHolder, position: Int) { val AlbumsData = albumsData!![position] holder.albumsName.text = AlbumsData.title Glide.with(holder.itemView) .load