这是我的布局xml。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/garae_scroll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/background"
android:fillViewport="true"
android:focusableInTouchMode="false" >
<RelativeLayout>
...
<com.handmark.pulltorefresh.library.PullToRefreshScrollView>
<LinearLayout/>
</com.handmark.pulltorefresh.library.PullToRefreshScrollView>
</RelativeLayout>
</ScrollView>
我已经尝试过此链接中的解决方案: ScrollView Inside ScrollView
然而,它没有用。如何使用子PullToRefreshScrollView? 请帮帮我。
答案 0 :(得分:7)
如果我理解您的问题,您希望在Scrollview中实现Pull to refresh。而不是使用您正在使用的库,我建议您实现SwipeRefreshLayout https://developer.android.com/reference/android/support/v4/widget/SwipeRefreshLayout.html 这是一种在应用程序Google+或Gmail中实现拉取式刷新的布局。
Here an example of how to implement the SwipeRefreshLayout in your xml :
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
android:layout_width="match_parent" android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android" >
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/garae_scroll"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ScrollView>
</android.support.v4.widget.SwipeRefreshLayout>
</FrameLayout>
注意强>
非常不推荐将Scrollview / Listview放入Scrollview / Listview中。第一个原因是关于表现,Romain Guy在一个视频https://www.youtube.com/watch?v=wDBM6wVEO70
中解释了这一点