我在recyclerview
之外有Recyclerview和Scrollview我想知道如何检查scrollview是否滚动到最后一个(底部)。
答案 0 :(得分:1)
如果您只想滚动,那么您可以使用NestedScrollView而不是ScrollView所以您可以使用以下代码修改您的代码:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
//design your content here with RecyclerView
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
另请参阅此链接.... https://github.com/amardeshbd/android-recycler-view-wrap-content