我试图通过基于此solution的数据绑定为RecyclerView实现一个空视图解决方案。我在SwipeRefreshLayout中有一个RecyclerView和RelativeLayout(空视图)。以下是布局的XML:
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<import type="android.view.View"/>
<variable
name="dataset"
type="...SeriesList"/>
</data>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/list"
android:name="...SeriesFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_marginTop="10dp"
app:layoutManager="LinearLayoutManager"
tools:context=".fragments.SeriesFragment"
android:visibility="@{dataset.size() > 0 ? View.VISIBLE : View.GONE}"/>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/empty_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="@{dataset.size() > 0 ? View.GONE : View.VISIBLE}">
<TextView
android:id="@+id/empty_text"
style="@style/Base.TextAppearance.AppCompat.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/empty_image"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dp"
android:width="300dp"
android:gravity="center"
android:textColor="#59000000" />
<ImageView
android:id="@+id/empty_image"
android:layout_width="128dp"
android:layout_height="160dp"
android:layout_centerInParent="true"
android:src="@drawable/empty" />
</RelativeLayout>
</android.support.v4.widget.SwipeRefreshLayout>
</layout>
正如您在RecyclerView是空视图后可以看到RelativeLayout一样,它们的可见性基于数据集的大小,这是一个SeriesList(扩展了ObservableArrayList)。在包含此布局的片段中,我像这样绑定数据:
FragmentSeriesListBinding binding = FragmentSeriesListBinding.inflate(inflater);
binding.setDataset(getmAdapter().getVisibleSeries());
基于此,我假设当适配器的可见SeriesList为空时,RecyclerView的可见性将为GONE,空视图将是可见的。在使用空数据集进行测试时,RecyclerView(没有项目)和空视图都具有VISIBLE的可见性,这是不可能的。有人可以解释为什么这不能像我期望的那样工作吗?