让我们从here查看一个简单的例子: 这是一个带有textview绑定的简单布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:bind="http://robobinding.org/android">
<TextView
bind:text="{hello}" />
...
<Button
android:text="Say Hello"
bind:onClick="sayHello"/>
以下是此布局的视图模型:
@org.robobinding.annotation.PresentationModel
public class PresentationModel implements HasPresentationModelChangeSupport {
private String name;//how does framework now what to set name to ?
public String getHello() {
return name + ": hello Android MVVM(Presentation Model)!";
}
...
public void sayHello() {
firePropertyChange("hello");
}
}
我的问题是viewModel是如何知道名字的?它还没有设置在任何地方?如果我有很多变量如name2,name3等怎么会知道要绑定什么呢?
答案 0 :(得分:1)
您应该查看整个源代码
表示模型类中有一个getter和一个setter,它使用布局中指定的两种方式绑定来管理name字段的值
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
bind:text="${name}"/>
如果您有更多变量,如果要使用双向绑定,则必须为每个变量提供一个getter和setter。