将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)

07-25 22:07