3

我的根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) 未指定资源类型(在“文本”处,值为“@{user.username}”)。

我试图把:

dataBinding { 
    enabled = true 
}

但我得到了另一个错误:

错误:找不到 com.android.databinding:library:1.0-rc3。

我能怎么做?我刚刚将 Android Studio 更新到 v1.5.1。

4

2 回答 2

2

实际上compileSdkVersion 21制造问题。您需要使用UPGRADED版本。

你应该使用

compileSdkVersion 23 
buildToolsVersion "23.0.1" 

&

targetSdkVersion 23  

你需要包括dataBinding.enabled = true

于 2016-01-14T08:50:12.623 回答
0
  1. 像这样添加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" } }

  2. 更改您的 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
        }
    `
    
于 2016-01-14T08:46:05.573 回答