android Kotlin-数据绑定-错误:检查模块类路径是否缺少依赖项或存在依赖项冲突

m4pnthwp  于 2022-12-16  发布在  Android
关注(0)|答案(8)|浏览(156)

我该如何解决这个问题?我无法使此数据绑定工作,我已经尝试了所有方法。Build.gradle(模块应用程序)

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.fusion.alen.ask"
        minSdkVersion 16
        targetSdkVersion 27
        multiDexEnabled true
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    androidExtensions {
        experimental = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dataBinding {
        enabled = true
    }

}

dependencies {
    implementation 'com.android.support:multidex:1.0.3'

    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:animated-vector-drawable:27.1.1'
    implementation 'com.android.support:support-vector-drawable:27.1.1'
    implementation 'com.android.support:customtabs:27.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:recyclerview-v7:27.1.1'

    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-android-extensions'
repositories {
    mavenCentral()
}

我尝试添加kapt“com.android.databinding:compiler:$compiler_version”,但它给了我一个错误。

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext{
        kotlin_version = '1.2.71'
        compiler_version = '3.2.1'
    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:4.2.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

这是我的profile_fragment. xml,我已按照文档说明进行了操作

<layout xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <data>
        <variable
            name="user"
            type="com.alen.ask.UserModel.User" />
    </data>

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:layout_editor_absoluteY="25dp">

        <LinearLayout
            android:id="@+id/profile_box"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:background="@color/primaryColor"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/app_bar">

            <LinearLayout
                android:id="@+id/qff_box"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_weight="5"
                android:orientation="horizontal"
                android:baselineAligned="false">

                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:orientation="vertical">

                    <TextView
                        android:id="@+id/questions_number"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:gravity="center"
                        android:textSize="18sp"
                        android:textStyle="bold"
                        **android:text="@{user.questionsNum}"************
                        tools:text="0" />

                </LinearLayout>

                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:orientation="vertical">

                    <TextView
                        android:id="@+id/followers_number"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:gravity="center"
                        android:textSize="18sp"
                        android:textStyle="bold"
                        **android:text="@{user.followersNum}"************
                        tools:text="0" />

                </LinearLayout>

                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:orientation="vertical">

                    <TextView
                        android:id="@+id/following_number"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:gravity="center"
                        android:textSize="18sp"
                        android:textStyle="bold"
                        **android:text="@{user.followingNum}"***********
                        tools:text="0" />

                </LinearLayout>
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:id="@+id/app_bar"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:background="@color/primaryDarkColor"
            android:orientation="horizontal"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent">

            <TextView
                android:id="@+id/username_text"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="8dp"
                android:layout_weight="1"
                **android:text="@{user.name}"**
                android:textColor="@color/primaryTextColor"
                android:textSize="18sp"
                android:layout_marginStart="8dp" />
        </LinearLayout>

    </android.support.constraint.ConstraintLayout>

</layout>


我的用户数据类:

data class User(val name: String,
                val email: String,
                val uid: String,
                val photo: String,
                val postsList: ArrayList<String> = ArrayList(),
                val questionsNum: Int = 0,
                val followersNum: Int = 0,
                val followingNum: Int = 0
                )

这位于ProfileFragmen类内部的onCreateView方法中

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        val binding = ProfileFragmentBinding.inflate(inflater, container, false)
        binding.user = user
}

行binding.user = user给我错误:无法访问类“UserModel. User”。请检查模块类路径中是否缺少依赖项或存在冲突的依赖项如何解决此问题,我已按照DataBinding文档中的说明进行了操作,我认为我没有犯任何错误。我已尝试清理并重建项目,但没有成功。我已尝试添加那些“kapt”依赖项,但没有成功...文件-〉项目结构-〉Gradle版本:4.10.1,安卓插件版本:3.2.1,Kotlin语言版本:1.2,Kotlin插件版本:1.2.71-release-Studio3.2-1

  • 谢谢-谢谢
mepcadol

mepcadol1#

将你的文件夹UserModel重命名为userModel,然后清理/重建你的项目。我遇到了同样的问题,当我的文件夹的第一个字母设置为小写时,错误消失了。将来使用camelCase作为你的文件夹名称,就像变量一样。第一个字母的大写通常用于类。

luaexgnf

luaexgnf2#

原因是因为您的一个软件包名称以Capital开头。
使用数据绑定的类名应该以大写开始,包名应该以小写开头。[这不仅仅是数据绑定,这是常用的约定]
[在内部,当dataBinding为您的xml生成bindingImplementation时,它会解析您的包名称以标识类,如果包名称以大写字母开头,则无法将类名与包名称分隔开,并抛出错误。]

eulz3vhy

eulz3vhy3#

存在相同的问题,通过将build.gradle模块中的构建功能从viewBinding更改为dataBinding修复了该问题

buildFeatures {
    dataBinding = true
}
oug3syen

oug3syen4#

多模块Gradle项目的解决方案(如果您从代码库构建多个应用):

ViewBinding和DataBinding库在使用许多Gradle module时,其内部生成的源集存在问题。

发行日期:

您有两个名称相同的XML布局文件(如content_main.xml)。这两个文件都存在于:first-app模块中,:second-app文件存在于layout目录中。IDE将显示红色错误。

但是,应用程序将正确编译和启动。
解决方案:

区分XML文件的名称-因此绑定将生成为:FirstAppContentMainBindingfirst_app_content_main.xml)和SecondAppContentMainBindingsecond_app_content_main.xml

4zcjmb1e

4zcjmb1e5#

在文件profile_fragment.xml中,尝试替换

<data>
    <variable
        name="user"
        type="com.alen.ask.UserModel.User" />
</data>

用这个

<data>
    <variable
        name="user"
        type="com.alen.ask.User" />
</data>

并给予我们反馈。

hyrbngr7

hyrbngr76#

<data class="ProfileBinding">
    <variable
        name="user"
        type="com.alen.ask.UserModel.User" />
</data>

在Fragment类中使用上面提到的ProfileBinding类进行膨胀

roejwanj

roejwanj7#

尝试使用binding.setVariable方法。

0wi1tuuw

0wi1tuuw8#

您的variable标记中缺少'fusion',尽管您在gradle的applicationId中有它。

相关问题