我正在尝试将LiveData绑定到TextView的值。
我已成功将viewmodel设置为变量,但TextView不显示任何文本。
这是我的XML代码:
<TextView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:gravity="center"
android:text='@{viewmodel.getText("TI_001")}'/>
viewmodel.getText(id)返回LiveData。当我尝试使用仅返回随机String的函数来尝试此操作时,绑定将正常工作,并且TextView将被填充。
这是我的getText方法:
public LiveData<String> getText(String id){
return textDao.findById(id);
}
这是findById方法:
@Query("SELECT text.text FROM text WHERE text.id LIKE :id")
LiveData<String> findById(String id);
有人可以帮助我使这种绑定起作用吗?
更新:
在我的片段中,我将livecycleowner设置如下:
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
mBinding = DataBindingUtil.inflate(inflater, R.layout.fragment_map, container, false);
mBinding.setLifecycleOwner(this);
return mBinding.getRoot();
}
答案 0 :(得分:0)
问题很可能是您没有告诉数据绑定您要附加到哪个生命周期:
binding.setLifecycleOwner(yourLifeCycleOwner)
如果打算将LiveData
用作数据绑定,则需要执行此操作。
官方文档:https://developer.android.com/reference/android/databinding/ViewDataBinding#setlifecycleowner