在我的任务应用程序中,我想对任务概述使用数据绑定。我将任务分为三类:逾期、今天和未来。
我的 task_overview.xml 定义了以下视图模型(其中包含三个具有不同任务的数组列表)
<data>
<variable
name="viewModel"
type="de.taskapp.ui.taskOverview.viewmodel.TaskOverviewViewModel" />
</data>
几个步骤后,我将三个任务列表的布局包含在包含标签中,如下所示
<include layout="@layout/layout_task_list"
android:id="@+id/overdued_tasks_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/headline"/>
<include layout="@layout/layout_task_list"
android:id="@+id/todays_tasks_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/overdued_tasks_list"/>
<include layout="@layout/layout_task_list"
android:id="@+id/future_tasks_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/todays_tasks_list"/>
如果我能做这样的事情,通过包含标签将不同的列表从视图模型传递到 layout_task_list.xml,那就太棒了
app:entries="@{viewModel.todaysTasks}" // for the todays task list case
我的 layout_task_list.xml 看起来像这样
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="tasks"
type="android.databinding.ObservableArrayList" />
</data>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.AppCompatTextView
android:id="@+id/subheading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/SubheadlineWithBackground"
tools:text="Heute"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/task_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/spacing_large"
android:layout_marginRight="@dimen/spacing_large"
android:nestedScrollingEnabled="false"
app:entries="@{tasks}" //recyclerviewbinding is already there
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
app:layout_constraintTop_toBottomOf="@id/subheading"/>
</android.support.constraint.ConstraintLayout>
正如您可能建议的那样......代码不起作用。显示此错误消息
data binding error ****msg:Cannot find the setter for attribute 'app:entries' with parameter type android.databinding.ObservableList<de.taskapp.data.entity.Task> on de.molske.einfachmachen.databinding.LayoutTaskListBinding. file:/Users/app/src/main/res/layout/layout_task_overview.xml loc:38:40 - 38:60 ****\ data binding error ****
好的,是的,它告诉我他找不到 app:entries 的设置器......但是没有一种“漂亮”的方式可以将三个列表传递给三个包含布局吗?我不喜欢为了能够传递不同的列表而将相同的布局复制并粘贴三次的想法。
提前致谢。
(ps。:我知道有可能通过java / android代码解决这个问题,但我想知道是否有数据绑定方式来做到这一点;-)