8

在我的项目中启用视图绑定后出现错误。

我尝试过重新同步项目,使缓存无效。我的应用程序 gradle 文件:

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

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

    defaultConfig {
        applicationId "com.learning.aboutme"
        minSdkVersion 19
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

    viewBinding.enabled = true

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.core:core-ktx:1.2.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.13'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

我的项目 gradle 文件

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

buildscript {
     ext.kotlin_version = '1.3.72'
     repositories {
          google()
          jcenter()

     }
     dependencies {
         classpath 'com.android.tools.build:gradle:3.6.3'
         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

          // NOTE: Do not place your application dependencies here; they belong
          // in the individual module build.gradle files
     }
}

allprojects {
     repositories {
          google()
          jcenter()

     }
}

task clean(type: Delete) {
     delete rootProject.buildDir
}

我的活动 main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingStart="@dimen/padding"
    android:paddingEnd="@dimen/padding"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/name_text"
        style="@style/name_style"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/name"
        android:textAlignment="center" />

    <EditText
        android:id="@+id/nickname_edit"
        style="@style/name_style"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:hint="@string/name_it_what_is_your_nickname"
        android:inputType="textPersonName"
        android:textAlignment="center" />

    <Button
        android:id="@+id/done_button"
        style="@style/Widget.AppCompat.Button.Colored"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="@dimen/layout_margin"
        android:fontFamily="@font/roboto"
        android:text="@string/done" />

    <TextView
        android:id="@+id/nickname_text"
        style="@style/name_style"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAlignment="center"
        android:visibility="gone" />

    <ImageView
        android:id="@+id/star_Image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/layout_margin"
        android:contentDescription="@string/yellow_star"
        app:srcCompat="@android:drawable/btn_star_big_on" />

    <ScrollView
        android:id="@+id/bio_scroll"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/textView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:lineSpacingMultiplier="@dimen/spacing_multiplier"
            android:text="@string/bio"
            android:textColor="@android:color/black" />
    </ScrollView>
</LinearLayout>

android:contentDescription在这里,android studio 在, textAlignment,lineSpacingMultiplier等上发出text警告

这是我的主要 activity.kt 文件:

package com.learning.aboutme

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.view.View
import com.learning.aboutme.databinding.ActivityMainBinding

class MainActivity : AppCompatActivity() {
    private lateinit var binding: ActivityMainBinding

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        binding = ActivityMainBinding.inflate(layoutInflater)
        setContentView(R.layout.activity_main)
    }

    private fun addNickname(view: View) {

    }
}

这里 android studio 说:无法访问android.viewbinding.ViewBinding哪个是com.learning.aboutme.databinding.ActivityMainBinding. 上ActivityMainBinding.inflate()

我尝试创建一个新项目并将我的文件移动到那里,但同样的错误(尝试移动activity_main.xml和同样的错误。

如何解决这个问题?

4

7 回答 7

24

对我来说,当我添加时错误消失了

implementation 'com.android.databinding:viewbinding:4.0.1'

build.gradle文件。

此依赖项包含android.viewbinding.ViewBindingAndroidStudio 无法访问的类。

于 2020-07-28T15:16:50.120 回答
10

在我的情况下,以下步骤(清除缓存)确实有帮助:

第 1 步:打开终端并在终端中转到您的项目路径。
第 2 步:点击此命令“git clean -xfd”。
第 3 步:转到:文件 -> 使缓存无效/重新启动。

于 2020-11-11T14:15:57.797 回答
3

我从这里找到了解决方案:https ://cdmana.com/2021/05/20210511224308742x.html 。只需添加gradle.properties

//...
android.enableD8=true
android.injected.testOnly=false

我希望它能解决你的问题

于 2021-05-23T15:26:44.757 回答
3

昨天面临同样的问题确切的错误。对我来说解决方案是

  • 步骤 1- 删除 .Idea 文件夹
  • 第 2 步 - 关闭 android studio
  • 第 3 步- 使用相同的项目路径重新打开 android studio(这将生成新的 .Idea 文件夹)

并且错误消失了

确保

  1. android.useAndroidX=true。在 gradle.properties 文件中
  2. 在应用程序 build.gradle 中
 buildFeatures {
       viewBinding true
 }
  1. 始终使用带有小写字母的文件夹结构,后者仅允许类名为大写
  2. 如果您在 xml 或没有变量标签的布局标签顶部使用任何版权注释,或者我们可以说没有任何数据,则删除它并尝试清理/重建项目
于 2022-02-08T15:40:31.333 回答
0

为我解决的错误通过:在 gradle.properties(Project Propoerties) 文件中添加以下行:

android.useAndroidX=true

于 2021-10-09T01:46:39.217 回答
0

你可以试试这个解决方案:

在 gradle 文件中添加“multiDexEnabled true”,如下所示

android {
compileSdk 30

defaultConfig {
    applicationId "com.example.test"
    minSdk 19
    targetSdk 30
    versionCode 1
    versionName "1.0"
    multiDexEnabled true

    testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}}
于 2021-10-31T07:42:56.067 回答
-1

这对我有用:

我最初在 Android Studio 中打开了 build.gradle(Module: App_name.app) 文件。

然后我打开了“项目结构”窗口......在左窗格中,我打开了“建议”选项卡。

那里有几个更新东西的建议,我选择并按下 OK ,之后他们开始从互联网上更新,之后,Gradle 同步,所有错误都在 MainActivity.kt 文件中消失了。

于 2021-05-24T13:24:53.050 回答