我在我的根build.gradle
文件中有这个:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
}
}
并在应用build.gradle
文件中:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.company.app"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.2.0'
//more third-party libraries
}
这是我的布局:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="user"
type="com.company.app.models.LoginCredentials"/>
</data>
<EditText
android:layout_width="match_parent"
android:layout_height="55dp"
android:text="@{user.username}"/>
<!-- More layouts and widgets -->
</layout>
但是我收到了这个错误:
错误:(82,35)未指定资源类型(在&#39;文本&#39;有值 &#39; @ {user.username}&#39)
。
我试图把:
dataBinding {
enabled = true
}
但我得到了另一个错误:
错误:找不到com.android.databinding:library:1.0-rc3。
我该怎么办?我刚刚将Android Studio更新为v1.5.1。
答案 0 :(得分:2)
实际上 compileSdkVersion 21
会产生问题。您需要使用升级版本。
你应该使用
compileSdkVersion 23
buildToolsVersion "23.0.1"
&安培;
targetSdkVersion 23
您需要包含 dataBinding.enabled = true
答案 1 :(得分:0)
将classpath "com.android.databinding:dataBinder:1.0-rc1"
添加到您的build.gradle中,如下所示
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath "com.android.databinding:dataBinder:1.0-rc1"
}
}
更改build.gradle,按照@IntelliJAmiya之前的评论中提到的内容添加apply plugin: 'com.android.databinding'
您的gradle就像
apply plugin: 'com.android.application'
apply plugin: 'com.android.databinding'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.company.app"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dataBinding {
enabled = true
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
//more third-party libraries
}
`