我遇到了一个问题,因为我想对一个数字选择器进行数据绑定。 但是我在任何地方都找不到任何示例,并且像往常一样,它在第一次尝试时就不起作用了……一打之后:)。
所以我想问问你的知识。
所以这基本上就是我在Xml中所做的:
(我的代码开头)
<data>
<variable
name="profilmvvm"
type="com.example.dupla.sparktennis.viewmodels.ProfilViewModel"/>
<import type="com.example.dupla.sparktennis.Services.ConversiontoInt"/>
</data>
同一文件中的内容有所减少:
<NumberPicker
android:layout_width="50.0dp"
android:layout_height="100.0dp"
android:id="@+id/numberPickerNiveauProfil"
android:gravity="center_horizontal"
android:layout_marginLeft="10.0dp"
android:layout_marginTop="40.3dp"
android:layout_marginRight="10.0dp"
android:layout_marginBottom="10.0dp"
android:value="@{profilmvvm.niveau.niveau}"/>
现在是我在Fragment活动中对其进行数据绑定的方式:
profilViewModel = new ProfilViewModel(getContext(), calendrier, rencontre, niveau, userLog, personne);
mBinding.setProfilmvvm(profilViewModel);
这是ViewModel:
public ProfilViewModel(Context context, CalendrierDisponibilite cal, TypeDeRencontre renc, Niveau niv, Userslogs user, Personne pers) {
this.context = context;
this.calendrier = cal;
this.niveau = niv;
this.user = user;
this.personne = pers;
this.rencontre = renc;
}
@Bindable
public CalendrierDisponibilite getCalendrier() {
return calendrier;
}
public void setCalendrier(CalendrierDisponibilite calendrier) {
this.calendrier = calendrier;
notifyPropertyChanged(BR.calendrier);
}
@Bindable
public TypeDeRencontre getRencontre() {
return rencontre;
}
public void setRencontre(TypeDeRencontre rencontre) {
this.rencontre = rencontre;
notifyPropertyChanged(BR.rencontre);
}
@Bindable
public Personne getPersonne() {
return personne;
}
public void setPersonne(Personne personne) {
this.personne = personne;
notifyPropertyChanged(BR.personne);
}
@Bindable
public Niveau getNiveau() {
return niveau;
}
public void setNiveau(Niveau niveau) {
this.niveau = niveau;
notifyPropertyChanged(BR.niveau);
}
@Bindable
public Userslogs getUser() {
return user;
}
public void setUser(Userslogs user) {
this.user = user;
notifyPropertyChanged(BR.user);
}
我是100%,我的视图模型中有数据。 我只是不确定为什么它可以正常使用的所有其他小部件(我有很多EditText和CheckBox)。
那么有什么我做不正确的事情吗?是否可以绑定NumberPicker?
感谢您的分享:)
答案 0 :(得分:0)
可以使用
@Bindable
public int getValue() {
return niveau.niveau;
}
或通过@BindingAdapter设置它