56

Android Studio 2.0 Preview 4 を使用しています。Android SDK ツール 25 rc1 を使用しています。このエラーは、プロジェクトを何回クリーン/再構築しても解決しません。ファイル - >キャッシュを無効にして再起動しても機能しません。データ バインディングの最も基本的な例を実行できません。

build.gradle ファイル

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.example.chiragshenoy.myapplication"
        minSdkVersion 15
        targetSdkVersion 23
        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.1'
    compile 'com.android.support:design:23.1.1'
}

MainActivity.java

package com.example.chiragshenoy.myapplication;

import android.databinding.DataBindingUtil;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuItem;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        MainActivity binding = DataBindingUtil.setContentView(this, R.layout.activity_main);
        User user = new User("Test", "User");
        binding.setUser(user);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
    <data>
        <variable name="user" type="com.example.chiragshenoy.myapplication.User"/>
    </data>
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@{user.firstName}"/>
        <TextView android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@{user.lastName}"/>
    </LinearLayout>
</layout>

これは私のトップレベルのbuild.gradleファイルです

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0-alpha3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
4

17 に答える 17

5

以下を使用する必要があります。

ActivityMainBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_main);

onCreateで

MainActivity は、生成された Binding クラスではありません。

于 2015-12-22T05:31:57.740 に答える
3

私が使用する最も簡単なハックの 1 つは、xml ファイルの名前を変更することです。

例えば

に名前を変更abc_layout.xmlabc_layout2.xmlます。バインディングのインポートでエラーが表示されたら、名前を に戻しabc_layout.xmlます。

名前を変更するためのショートカットはshift + F6. プロジェクト全体の再構築がより速くなります。ただし、これは1つのファイルからのみエラーを削除します。

于 2016-05-04T10:58:36.370 に答える
3

デフォルトでは、Bindingクラスはレイアウト ファイルの名前に基づいて生成され、パスカル ケースに変換され、「Binding」というサフィックスが付けられます。上記のレイアウト ファイルはmain_activity.xmlだったので、生成クラスはMainActivityBinding でした。問題は、バインディング クラスを手動で作成しようとしていることです。

このクラスは、レイアウト プロパティ (ユーザー変数など) からレイアウト プロパティまでのすべてのバインディングを保持し、バインディングViews式に値を割り当てる方法を認識します。バインディングを作成する最も簡単な方法は、膨らませながら行うことです。Android Studio を再起動する必要はありません。

于 2016-06-28T04:37:55.443 に答える
2

最上位の Build.Gradle ファイルでは、gradle 1.5.0 以降を使用します

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

1.5.0 より低い場合は、トップレベルの gradle ファイルでもこれを使用します

        classpath "com.android.databinding:dataBinder:1.0-rc4"
于 2015-12-19T07:53:25.483 に答える
2

キャッシュの無効化/ファイルからの再起動を試してください。これは私にとってはうまくいきました。

于 2019-06-18T12:26:30.443 に答える
0

モジュール レベルのbuildフォルダーを削除し、プロジェクトを再度開きます。

于 2020-01-16T09:50:17.323 に答える