最新Studio 3.6中未生成数据绑定类


9

今天,我已经将Android Studio 3.5.3更新为3.6。现在,我无法生成任何数据绑定类。Android Studio会自行生成数据绑定-iml文件。

有没有人遇到这样的问题?

Gradle wrapper.properties:

distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

项目级gradle文件:

dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
}

应用程序级别gradle文件:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: 'androidx.navigation.safeargs'
android {
 dataBinding {
        enabled = true
    }
    // Using Lambda Expressions
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    kotlinOptions {
        jvmTarget = "1.8"
    }
}

gradle.properties:

kotlin.code.style=official
android.databinding.enableV2=true
kotlin.incremental=true
kapt.incremental.apt=true

以下是我的活动和XML文件: 活动:

class ActivityMain : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        var binding = DataBindingUtil.setContentView<ActivityMainBinding>(this, R.layout.activity_main)
    }
}

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">

    <data>
        <import type="android.view.View" />
     <!--   <variable
            name="loading"
            type="Boolean" />-->
        <variable
            name="bottomMenu"
            type="Boolean" />
        <variable
            name="clickListener"
            type="com.ecom.side_menu.SideMenuClickHandler" />
    </data>
    <androidx.drawerlayout.widget.DrawerLayout
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:fitsSystemWindows="false"
        android:layout_height="match_parent">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/container"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <include
                android:id="@+id/layToolbar"
                layout="@layout/layout_toolbar"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

            <androidx.fragment.app.FragmentContainerView
                android:id="@+id/splash_host"
                android:name="androidx.navigation.fragment.NavHostFragment"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:background="@android:color/white"
                app:defaultNavHost="true"
                app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/layToolbar"
                app:navGraph="@navigation/splash_graph" />

            <com.google.android.material.bottomnavigation.BottomNavigationView
                android:id="@+id/bottomNavigationView"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginStart="0dp"
                android:layout_marginEnd="0dp"
                android:background="@color/colorPrimary"
                android:visibility="@{safeUnbox(bottomMenu) ? View.VISIBLE : View.GONE}"
                app:itemBackground="@color/colorPrimary"
                app:itemIconTint="@android:color/white"
                app:itemTextColor="@android:color/white"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:menu="@menu/menu_navigation_dashboard" />


         <!--   <include
                android:id="@+id/progressLayoutId"
                layout="@layout/layout_progress"
                android:visibility="@{safeUnbox(loading) ? View.VISIBLE : View.GONE}"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent" />-->

        </androidx.constraintlayout.widget.ConstraintLayout>

        <com.google.android.material.navigation.NavigationView
            android:id="@+id/navigationView"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:background="@android:color/white"
            android:fitsSystemWindows="true"
            android:visibility="visible">
            <include
                android:id="@+id/customDrawerList"
                app:clickListener="@{clickListener}"
                layout="@layout/drawer_list" />
        </com.google.android.material.navigation.NavigationView>

    </androidx.drawerlayout.widget.DrawerLayout>

</layout>

官方解决方案:

Google已解决此问题。使用android studio 3.6.2的新补丁更新后,我可以创建具有多个源集的数据绑定类


我今天也自己更新了Studio,&&也使用了数据绑定类。.它的工作很好,兄弟
Nice umang

只是使缓存无效并重新启动您的工作室;)
不错的umang

@Niceumang我尝试过使缓存无效并重新启动,以及我也尝试删除了构建文件夹。.但是仍然是相同的错误
Mehta

您将在创建绑定类的地方显示XML和类吗?
乌木

@Niceumang类和XML添加了问题
Mehta

Answers:


6

这也发生在我身上。绑定类实际上是生成的。该项目建设良好。只有Android Studio 3.6.1(或基本的Gradle构建系统,我不在乎)有问题,无法看到这些类。

作为一种中间解决方案,我只是破解了源代码集(请注意,以下片段中的构建变体特定于我的项目,您需要重写它)。

android {
    ...
    sourceSets {
        demoDebug {
            java.srcDirs += 'build/generated/data_binding_base_class_source_out/demoDebug/out'
        }
        fullDebug {
            java.srcDirs += 'build/generated/data_binding_base_class_source_out/fullDebug/out'
        }
        espressoDebug {
            java.srcDirs += 'build/generated/data_binding_base_class_source_out/espressoDebug/out'
        }
        demoRelease {
            java.srcDirs += 'build/generated/data_binding_base_class_source_out/demoRelease/out'
        }
        fullRelease {
            java.srcDirs += 'build/generated/data_binding_base_class_source_out/fullRelease/out'
        }
        espressoRelease {
            java.srcDirs += 'build/generated/data_binding_base_class_source_out/espressoRelease/out'
        }
    }
    ...
}

正如以上史蒂夫(Steve)所指出的:在此同时,我们必须耐心等待Google对其进行修复...

编辑

我刚刚意识到它比我想象的要多得多,布局也被破坏了:

亲爱的Google,请亲爱的:不要向我们发布不稳定的中间版本”

我希望Google尽快解决此问题...

编辑2

我再次意识到,Android Studio 3.6甚至比上面描述的还要多。

现有的Espresso测试的执行也已中断。

我强烈不鼓励所有人升级到Android Studio 3.6。

同时,我们可能会降级到Android Studio 3.5。


谢谢..这个技巧很好用..现在我可以创建Binding类了。
梅塔

是的,希望Google会尽快修复此错误
梅塔

1
但仍然无法在xml中正确访问绑定变量
Mehta

不幸的是,正如我在上面的编辑中提到的那样:(
–JiříKřivánek

4

只需将您的Gradle版本更新为最新版本即可。去:

文件>项目结构> Gradle版本

并选择最新的稳定版本(当前为6.3)。如果它也指向最新版本,请同时检查您的Android Gradle插件版本。


谢谢,这对我来说有帮助!+1
塔诺

3

对于AndroidStudio 3.6.1,您可以将以下代码添加到应用程序级别build.gradle(:app)中。我的问题已通过添加此行来解决,希望您也是如此。

sourceSets {
     main {
          java.srcDirs += 'build/generated/data_binding_base_class_source_out/debug/out'
        }
    }

正如JiříKřivánek和您所建议的那样,我添加了提及的解决方案,但是现在,每个变量都显示有红色下划线。.无法访问
Mehta

3

我正在使用android studio 3.6.1添加viewBinding.enabled = trueandroid{中后解决的问题build.gradle

android {

...
    dataBinding {
        enabled = true
    }
    viewBinding.enabled = true

它奏效了,兄弟
Fanadez

有用!!我错过了dataBinding {enabled = true}
Billyjoker

2

确实,最新的Android数据绑定库中存在一个错误。清理项目无效。重建项目无效。使缓存无效并重新启动无效。

对我有用的唯一解决方案是将数据绑定版本从版本2(这是Android Studio 3.6.1和更高版本中的新默认值)回滚到版本1。为此,您不必回滚所有Android Studio。相反,您可以将以下行添加到gradle.properties

android.databinding.enableV2=false

TLDR;我想知道Google是否已决定彻底改变我们应该使用其最新的数据绑定编译器进行数据绑定的方式。如果团队正在努力提供YAS(还提供另一种语法),也就不足为奇了。毕竟,DataBindingUtil.inflate<MyClassBindingImpl>它已经成为所有计算机编程中最奇怪的使用模式之一,要求编译器自动生成通用数据绑定类的具体实现,然后才能在代码中引用自动生成的类。顺便说一句,这就是为什么Make Project存在类似工具的原因。我期望对数据绑定语法进行彻底的检查,很快就会到来。



0

也发生在我身上。这是因为在AS 3.6.0中,如果我们在android:id中使用include标签,则无法访问其他模块的绑定。我认为此错误来自IDE,因为我可以成功运行该项目。唯一要做的就是等待修复程序或忽略错误。


0

这件事也发生在我身上。我刚刚在项目build.graddle文件上将Graddle版本升级到3.6.0,现在它又可以工作了。


0

我遇到了这个问题,因为我将布局分成几个目录,并在波纹管中定义它们,例如波纹管

sourceSets {
    main {
        res.srcDirs =
                [
                        'src/main/res', 'src/main/drawable/button_icons', 'src/main/res/drawable/button_icons',

                        'src/main/res', 'src/main/layouts/user', 'src/main/res/layouts/user',
                        'src/main/res/layouts', 'src/main/layouts/user', 'src/main/res/layouts/user/register',
                        'src/main/res/layouts', 'src/main/layouts/user', 'src/main/res/layouts/user/login',
                        'src/main/res/layouts', 'src/main/layouts/user', 'src/main/res/layouts/user/profile',
                        'src/main/res/layouts', 'src/main/layouts/user', 'src/main/res/layouts/user/wallet',

                        'src/main/res/layouts/splash_layouts', 'src/main/res/layouts', 'src/main/res',

                        'src/main/res/layouts/main_layouts', 'src/main/res/layouts', 'src/main/res',
                        'src/main/res/layouts/main_layouts/sellers', 'src/main/res/layouts/main_layouts', 'src/main/res/layouts',

                        'src/main/res/layouts/dashboard_layouts', 'src/main/res/layouts', 'src/main/res',

                        'src/main/res/layouts/basket_layouts', 'src/main/res/layouts', 'src/main/res',
                        'src/main/res/layouts/factor_layouts', 'src/main/res/layouts', 'src/main/res',

                        'src/main/res/layouts/setting_layouts', 'src/main/res/layouts', 'src/main/res',
                ]
    }

}

所以我将所有布局放在主布局目录中,然后删除其他子布局目录


0

这似乎已在Android Studio 3.6.3中修复。虽然

viewBinding.enabled = true

也为我工作而不是

viewBinding {
    enabled = true
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.