Android文档很好地描述了如何使用布局xml文件创建绑定类。但我有几个问题。
有没有办法为以编程方式实例化的自定义视图创建数据绑定类?例如,假设我有两个自定义视图类,我想以编程方式将相同的视图模型对象绑定到它们,而不使用任何xml。课程如下:
MyCustomView customView = new MyCustomView(context);
现在假设我使用以下方法实例化MyCustomView / MyAnotherCustomView:
my_custom_view.xml
在这种情况下,如何使用数据绑定?这是否可以使用官方的Android数据绑定框架?如果没有,可以使用或推荐哪些其他框架/库来实现这一目标?
我的第二个问题是对第一个问题的跟进。让我们说在我的第一个问题中不可能实现我想要的。然后,我将不得不定义一个<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable name="user" type="com.example.User"/>
</data>
<com.example.name.MyCustomView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@{user.firstName}"/>
</layout>
文件。这看起来像这样:
my_another_custom_view.xml
现在,如果我想使用MyAnotherCustomView是MyCustomView的子类,保持绑定逻辑相同,我是否必须创建一个新的xml文件{{1}},只是用MyAnotherCustomView替换MyCustomView来定义相同的绑定?
答案 0 :(得分:8)
第一个问题的答案是&#34; No。&#34; Android数据绑定需要XML来生成绑定类。
在第二个问题中,您提供了一个可行的解决方案。如果你走这条路,一种方法是使用ViewDataBinding基类设置器来设置你的变量。我可以想象一个像这样的方法:
public void addCustomView(LayoutInflater inflater, ViewGroup container, User user) {
ViewDataBinding binding = DataBindingUtil.inflate(inflater,
this.layoutId, container, true);
binding.setVariable(BR.user, user);
}
在这里,我假设选择哪个自定义视图由字段layoutId
确定。每种可能的布局都必须定义user
类型的User
变量。
我不知道您使用的详细信息,但如果您想动态选择要加载的自定义视图,则可以使用ViewStub。如果您在加载自定义视图时没有任何巨大的开销,那么您也可以通过可见性执行相同的操作。
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<import type="android.view.View"/>
<variable name="user" type="com.example.User"/>
<variable name="viewChoice" type="int"/>
</data>
<FrameLayout ...>
<!-- All of your outer layout, which may include binding
to the user variable -->
<ViewStub android:layout="@layout/myCustomView1"
app:user="@{user}"
android:visiblity="@{viewChoice == 1} ? View.VISIBLE : View.GONE"/>
<ViewStub android:layout="@layout/myCustomView2"
app:user="@{user}"
android:visiblity="@{viewChoice == 2} ? View.VISIBLE : View.GONE"/>
</FrameLayout>
</layout>