gpt4 book ai didi

android - Android:布局数据变量:XML文件无法使用ViewModel类

转载 作者:行者123 更新时间:2023-12-02 12:51:20 25 4
gpt4 key购买 nike

将ViewModel直接连接到XML文件的概念是我的新手,我真的不知道为什么Gradle无法找到ViewModel类。

在下面,我发布了我的代码和错误日志。

感谢您的任何提前帮助。

编辑:主要 Activity 是片段的唯一宿主,并且此片段实例化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"
xmlns:tools="http://schemas.android.com/tools">

<data>
<variable
name="tvm"
type="com.uj.bachelor_jlk700.examsystem.screens.test.TestViewModel" />
</data>

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".screens.test.TestFragment">


<TextView
android:id="@+id/textView_testFragment_name"
android:layout_width="90dp"
android:layout_height="30dp"
android:text="@{tvm.userName}"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.049"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.035" />

错误味精
C:\Users\Jan\AndroidStudioProjects\ExamSystem\app\build\generated\data_binding_base_class_source_out\debug\out\com\uj\bachelor_jlk700\examsystem\databinding\TestFragmentBinding.java:17: error: cannot find symbol
import com.uj.bachelor_jlk700.examsystem.screens.test.TestViewModel;
^
symbol: class TestViewModel

ViewModel

Main Activity

Fragment - Model

最佳答案

您的xml布局无法识别引用TestViewModel类的 tvm 对象,因此您需要在片段中明确定义TestViewModel类的实例。

要在片段类的onCreateView()中的片段中执行此操作:

viewModel = ViewModelProviders...
binding.setTvm(viewModel)

关于android - Android:布局数据变量:XML文件无法使用ViewModel类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61560411/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com