gpt4 book ai didi

安卓 MVVM : cannot generate view binders

转载 作者:行者123 更新时间:2023-11-30 00:18:56 28 4
gpt4 key购买 nike

我收到类似这样的错误

Error:cannot generate view binders java.lang.StringIndexOutOfBoundsException: String index out of range: -8

几分钟前,我的代码运行良好,我能够运行该项目。我已经尝试过 stackoverflow 上给出的许多解决方案,但无法找到解决此问题的实际解决方案。

我的应用级gradle是这样的

android {

compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION

defaultConfig {

applicationId "com.xyz.abc"
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
versionCode 1
versionName "1.0"

vectorDrawables.useSupportLibrary = true

}

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

packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'
}

dataBinding {
enabled = true
}

compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}

}

repositories {
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}

dependencies {

compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.1.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support:customtabs:26.1.0'

compile 'com.android.support:support-v4:26.1.0'

}
apply plugin: 'com.google.gms.google-services'

非常感谢您的任何意见。

最佳答案

我要为我的上述问题找到解决方案。这是我在标签下的布局文件中犯的一些愚蠢的错误。我写了这样的代码

<variable
name="deliveryPreferences"
type="java.util.ArrayList&gt;String&lt;" />

代替

<variable
name="deliveryPreferences"
type="java.util.ArrayList&lt;String&gt;" />

此处的区别在于 > 文本放置。我对这两者感到困惑。如果有人想将 arraylist 从您的 Java 文件发送到 xml 文件,则正确的解决方案是第二种。

关于安卓 MVVM : cannot generate view binders,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46688394/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com