如何滚动拉动以刷新正常scrollview中的scrollview

时间:2014-04-10 01:06:15

标签: android layout refresh scrollview pull

这是我的布局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? 请帮帮我。

1 个答案:

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

中解释了这一点