5

我正在尝试模块化一个库,所以这里可能会发生任何事情。从 Android Gradle 插件 3.5.0 更新到 3.5.1 后,我现在在使用我的 Resource.kt 类的布局上遇到数据绑定错误。我认为该课程是直接从 Google Github 浏览器示例中提取出来的(由于某种原因,我根本无法获得要构建的最新提交)。该错误似乎与通用数据字段有关T

资源.kt

data class Resource<out T>(val status: Status, val data: T?, val message: String?, val throwable: Throwable? = null) {
    companion object {
        fun <T> success(data: T?): Resource<T> {
            return Resource(SUCCESS, data, null)
        }

        fun <T> error(data: T?, msg: String, throwable: Throwable?): Resource<T> {
            return Resource(ERROR, data, msg, throwable)
        }

        fun <T> loading(data: T?): Resource<T> {
            return Resource(LOADING, data, null)
        }
    }
}

布局xml:

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

        <import type="android.view.View" />

        <import type="core.sdk.data.remote.response.Resource" />

        <import type="core.sdk.data.remote.response.Status" />

        <variable
            name="resource"
            type="Resource" />

        <variable
            name="progressText"
            type="String" />
    </data>

    <LinearLayout
        android:id="@+id/circular_progress"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:gravity="center"
        android:orientation="vertical"
        app:visibleGone="@{resource.data == null}">

        <androidx.core.widget.ContentLoadingProgressBar
            android:id="@+id/progress_bar"
            style="@style/Widget.AppCompat.ProgressBar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:indeterminateTint="@color/ll_secondary"
            android:indeterminateTintMode="src_in"
            app:visibleGone="@{resource.status == Status.LOADING}"
            tools:ignore="UnusedAttribute" />

        <TextView
            android:id="@+id/progress_text_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:text="@{progressText}"
            android:textAppearance="?attr/textAppearanceHeadline5"
            android:textColor="@color/ll_secondary"
            android:textStyle="italic"
            app:visibleGone="@{resource.status == Status.LOADING}"
            tools:text="loading..." />
    </LinearLayout>

</layout>

错误:

LoadingStateBindingImpl.java:106:错误:';' 预期的 ?资源数据=空; 在此处输入图像描述

我有增量数据绑定和 kapt on:

android.databinding.incremental=true
kapt.incremental.apt=true

项目是一个完全使用 Kotlin 1.3.50 的 Kotlin,jvm 目标为 1.8:

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
    jvmTarget = "1.8"
}

AGP 3.5.0 不会出现此错误。这是与 3.5.0 相同的文件,没有错误:

在此处输入图像描述

4

2 回答 2

1

不幸的是,这改变了数据绑定的工作方式,从问题跟踪器的讨论来看,这是一个永久性的改变。

数据绑定引用现在更加严格,因此使用泛型类(在本例中为 Resource)将失败。同样使用 List 之类的东西:

<variable name="list" type="java.util.List"/>

也会失败。因为数据绑定没有足够的信息来确定泛型类型是什么 - 具有更多泛型知识的人可能能够解释为什么会这样!

为了处理泛型,数据绑定需要更多信息。有两种方法可以更新数据绑定以使用新的 gradle 插件:

  1. 直接定义你的泛型。"<" 是等同于 "<" 的 xml。
<variable name="list" type="java.util.List&lt;MyClass>"/>
  1. 将您的泛型包装在包含类中。
class MyGenericWrapper : List<Object>  

<variable name="myVariable" type="MyGenericWrapper"/>
于 2020-03-03T10:51:17.847 回答
0

正如@enyciaa 所指出的,您需要(更多)明确地指定Resource<?>变量 int 布局的类型<data>..</data>

在您的示例中,它的含义如下:

<data>
        ..
        <variable
        name="resource"
        type="Resource&lt;java.lang.Object>" />
</data>
于 2020-10-07T13:19:22.120 回答