我有以下布局。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.SwipeRefreshLayout>
基本上recyclerView
嵌入了SwipeToRefresh
。这适用于我可以上下滚动recyclerView的地方。到达顶部时,我向下拉,刷新就会发生。
鉴于我需要动态添加一个空视图,我将空视图和RecyclerView
包装在RelativeLayout
下。如下所示。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<include
android:id="@+id/my_empty_view"
layout="@layout/fragment_empty_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
</RelativeLayout>
</android.support.v4.widget.SwipeRefreshLayout>
通过在RelativeLayout
和RecyclerView
之间添加此SwipeToRefreshLayout
,RecyclerView
只能向下滚动。它无法向上滚动,因为每当我尝试向上滚动时,SwipeToRefresh
都会发生。
为什么这是一个问题?在保留我的布局时有没有办法解决问题?
谢谢!
答案 0 :(得分:0)
可滚动视图必须立即嵌入到SwipeRefreshLayout中。因此,您可以将RelativeLayout嵌入ScrollView中,并将ScrollView嵌入SwipeRefreshLayout中。
像这样:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<include
android:id="@+id/my_empty_view"
layout="@layout/fragment_empty_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
</RelativeLayout>
</ScrollView>
</android.support.v4.widget.SwipeRefreshLayout>