Skip to content
Advertisement

Android RecyclerView First and Last Item click works after Double click on First load

I have a recycerview. it has item click event in onCreateViewHolder method and an imageview click event on onBindViewHolder method. Surprisingly while recyclerview loads for the first time first and last item click works after second click then after it works on every click if it is not scrolled.Again when i scroll the recyclerview then same happen for the first and last item like first load. I can not figure out what is the problem

Below is my recyclerview layout @+id/recyclerViewForFilteredCourses is the recyclerview

JavaScript

And below is my onCreateVieHolder Item click

JavaScript

And Below is my complete onBindViewHolder

JavaScript

Advertisement

Answer

At last I found a solution. My recyclerview layout has a nestedscrollview adding android:nestedScrollingEnabled="false" to my recyclerview solved my problem. I don’t know why but it solved my problem

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement