如何使用Volley android实现加载更多Json

时间:2016-10-24 03:13:24

标签: android scrollview

我在recyclerview

之外有Recyclerview和Scrollview

我想知道如何检查scrollview是否滚动到最后一个(底部)。

1 个答案:

答案 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