onClick method not working properly after NestedScrollView scrolled

I found solution for same problem on this thread :The item inside RecyclerView can’t be clicked right after scrolling

You can fix your code by adding layout_behavior to your AppBarLayout.You can find code here Fixed AppBarLayout.Behavior .Just add this class tou your project and fix your code :

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
app:layout_behavior="yourPackageName.FixAppBarLayoutBehavior"
android:layout_height="wrap_content">

Leave a Comment