How to disable caching on RecyclerView item clicks that opens up a Fragment?
I have a project that has a RecyclerView and each item click on RecyclerView will navigate you to another fragment which will load the data of the specific item from a REST API (using Retrofit2).
// Overriding my onClickListener interface on my adapter
override fun onMediaClick(
mediaPosition: Int,
mediaCategory: String,
mediaId: String,
mediaImage: String,
mediaImageView: ImageView
) {
val args = Bundle().apply {
putString(MEDIA_ID, mediaId)...