這是我的老代碼倚搬,別噴冶共!item快速滑動(dòng)到底部第一次無(wú)法點(diǎn)擊底部item,第二次就能點(diǎn)擊
百度了一下,發(fā)現(xiàn)這是NestedScrolView以為還在滑動(dòng)中
參考解決:https://blog.csdn.net/ganyao939543405/article/details/80651582
我的解決是把這段神奇的view:NestedScrollView去掉
<com.scwang.smartrefresh.layout.SmartRefreshLayout
android:id="@+id/my_task_smart"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:srlEnableLoadMore="false">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/my_task_recycle"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</com.scwang.smartrefresh.layout.SmartRefreshLayout>