0

在我的一个项目中,我已经开始在主要活动中实现 dataBinding,方法是在名为 view 的类、另一个名为 viewModel 的类和模型类中分离数据。使用这些类和dataBinding,应用程序已经正确编译,但是当我将这些类放在不同的包中以遵循MVVM架构时,名为ActivityLoginBinding的自生成类无法识别ViewModel包内的类。我已经搜索了不同的项目,看看这是否是我在语法层面的错误,但它们写得很好。我还注意到所有项目都分为不同的包并且可以正常工作。知道为什么会发生这种情况以及如何解决吗?谢谢你。

我的 xml

<?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="student3"
            type="com.juan97.prueba.ViewModel.Student3ViewModel"/>
    </data>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:context=".View.MainActivity">

        <TextView
            android:layout_marginTop="50sp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:hint="@{student3.hint1}"/>

        <TextView
            android:layout_marginTop="50sp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:hint="@{student3.hint2}"/>

    </LinearLayout>


</layout>

gradle 模块应用程序

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.juan97.prueba"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    dataBinding {
        enabled = true
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

我有不同的包:

在此处输入图像描述

编译错误

在此处输入图像描述

4

0 回答 0