英文:
how can get attribute view in xml from viewModel
问题
我有3个文件(Activity、ViewModel、XML)
我使用MVVM将XML连接到ViewModel。
<?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>
<variable
name="viewModel"
type="com.example.MainViewModel"/>
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/priceTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@={viewModel.price}"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
ViewModel.class
open class MainViewModel : ViewModel() {
val price = MutableLiveData<String>()
val priceTextViewWidth = MutableLiveData<Int>()
}
在活动中,我使用以下代码将XML连接到ViewModel:
binding.viewModel = viewModel
我可以通过更改ViewModel中的价格变量来更新TextView,但是我需要将TextView的宽度传递给ViewModel中的priceTextViewWidth。
英文:
I have a 3 files(Activity, ViewModel,XML)
I use MVVM and connect XML to ViewModel.
<?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>
<variable
name="viewModel"
type="com.example.MainViewModel"/>
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/priceTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@={viewModel.price}"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
ViewModel.class
open class MainViewModel : ViewModel() {
val price = MutableLiveData<String>()
val priceTextViewWidth = MutableLiveData<Int>()
}
and in the activity, I connect XML to view model with
binding.viewModel = viewModel
I can update Textview with change price variable in View Model but I need to pass TextView width to priceTextViewWidth in ViewModel.
答案1
得分: 1
将:
android:layout_width="wrap_content"
替换为:
android:layout_width="@{viewModel.priceTextViewWidth}"
英文:
Replace :
android:layout_width="wrap_content"
with
android:layout_width="@{viewModel.priceTextViewWidth}"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论