我想要做的是,允许用户刷卡并刷新列表,无论数据是否存在都无关紧要。但是当列表视图中存在数据时,列表视图应该是可见的,而当数据不存在时,应该看到空文本视图。在这两种情况下,用户必须能够通过滑动刷新列表。
我尝试了一些解决方案 here in this discussion但是没有一个听起来有效,采用两个SwipeToRefresh的想法在给定Here时工作正常,但即使从服务器获取数据,它也显示空容器。
我用自己的逻辑包装Listview和Textview在Relative / FrameLayout中进行了尝试,但SwipeToRefresh仅根据其行为接受一个视图
这是我尝试过的xml片段
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/activity_main_swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.945" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/event_list_eventlist"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@color/event_background"
android:dividerHeight="1dp" >
</ListView>
<TextView
android:id="@+id/event_txt_nothing_found"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true"
android:layout_centerVertical="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/darker_gray"
android:visibility="gone" />
</RelativeLayout>
</android.support.v4.widget.SwipeRefreshLayout>
请帮忙
答案 0 :(得分:13)
我使用FrameLayout解决了同样的问题,请看下面的代码:
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/layout_swipe_refresh"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ListView
android:id="@+id/lv_products"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@null" />
</android.support.v4.widget.SwipeRefreshLayout>
<TextView
android:id="@+id/tv_no_product"
style="@android:style/TextAppearance.Medium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="10dp"
android:gravity="center"
android:text="@string/msg_no_listing"
android:textColor="@color/primary_green"
android:visibility="gone" />
</FrameLayout>
您也可以使用RelativeLayout,但关键是将ListView放在SwipeRefreshLayout和TextView外。
答案 1 :(得分:12)
我也有这个问题,并通过使用下面的布局解决了在活动中没有任何其他代码。
如果您正在使用ListActivity
或ListFragment
,它会为您显示/隐藏空视图,并使用此布局结构刷新空列表。
不需要黑客,所有内容都在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/Refresher"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@null" />
<ScrollView
android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="Geen formulieren gevonden"
style="@style/text.EmptyView" />
</ScrollView>
</LinearLayout>
</android.support.v4.widget.SwipeRefreshLayout>
希望它可以帮助任何人解决这个问题。
答案 2 :(得分:0)
最后使用以下代码解决问题
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_container"
android:layout_below="@+id/search_product"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_shop_list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<ScrollView
android:gravity="center"
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.forysta.inloyal.view.textviews.RegularTextView
android:id="@+id/tv_no_shop_data"
style="@style/text_Size_16"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="@string/alert_nodatashop"
android:visibility="visible"
app:layout_collapseMode="parallax" />
</ScrollView>
</LinearLayout>
</android.support.v4.widget.SwipeRefreshLayout>
答案 3 :(得分:0)
我的问题似乎没有记录,但如果回收站视图的适配器没有数据,并且您已调用setLayoutManager
函数,则回收站视图将变为不可刷卡状态。我的解决方案是在收到一些数据后才调用setLayoutManager
。