85

機能の使用を開始してDataBindingいます。私はそれで問題に直面しています。

エラー:(21, 9) エラー: シンボル クラス ContactListActivityBinding が見つかりません

build.gradle(モジュール: アプリ)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.letsnurture.ln_202.databindingdemo"
        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'
}

ContactListActivity.java

import android.databinding.DataBindingUtil;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;

import com.letsnurture.ln_202.databindingdemo.model.Contact;

public class ContactListActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ContactListActivityBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_contact_list);
        Contact user = new Contact("Chintan Soni", "+91 9876543210");
        binding.setContact(user);

//        setContentView(R.layout.activity_contact_list);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                        .setAction("Action", null).show();
            }
        });
    }

    @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_contact_list, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

content_contact_list.xml

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:context="com.letsnurture.ln_202.databindingdemo.ContactListActivity"
    tools:showIn="@layout/activity_contact_list">

    <data>

        <variable
            name="user"
            type="com.letsnurture.ln_202.databindingdemo.model.Contact" />
    </data>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:padding="@dimen/activity_horizontal_margin"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@{user.contactName}"
            tools:text="Name" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@{user.contactNumber}"
            tools:text="Number" />
    </LinearLayout>
</layout>

activity_contact_list.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.letsnurture.ln_202.databindingdemo.ContactListActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_contact_list" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="@dimen/fab_margin"
        android:src="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>
4

31 に答える 31

46

私は一貫してこの問題に遭遇します。動的に生成されたファイルを認識していないAndroidスタジオに関係していると思います。データ バインディングに問題がない場合は、[ファイル] > [キャッシュの無効化/再起動...] を選択し、[キャッシュの無効化と再起動] を選択します。次に、BR ファイルをインポートしてみてください...正常にインポートされるはずです。

クリーンアップとリビルドが必要になる場合があります。

于 2016-06-03T22:40:30.293 に答える
8

これはあなたのコードです

ContactListActivityBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_contact_list);

このコードを置き換えます

ActivityMainBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_contact_list);
于 2016-07-04T07:00:31.573 に答える
2

バインドするように変更する必要がありますactivity_contact_list- で行ったようにレイアウト タグを追加しますcontent_contact_listactivity_contact_list内部のルート レイアウトには、生成される Binding クラスの ID が必要であり、ActivityContactListBindingという名前が付けられることを忘れないでください(つまり、アンダースコアの代わりにキャメル キャストを使用したレイアウトの名前)。

次に、内部activity_contact_list<include layout="@layout/content_contact_list" />id を指定すると、ActivityContactListBinding インスタンスを介してバインディング インスタンスにアクセスできます。

次のようなもの:

binding.contentContactList.setContact(user);

それが機能するかどうか教えてください。

于 2016-02-14T14:25:22.710 に答える
2

私のプロジェクトでは、次の点で問題がありました。

android:text="@{safeUnbox(viewmodel.population)}"

だから私はそれをラップしましたString.valueOf():

android:text="@{String.valueOf(safeUnbox(viewmodel.population))}"

で、解決しました

于 2020-01-27T13:34:30.580 に答える
2

これらのエラーの原因は、DataBindingそれ自体ではなく、コードの他の部分にある場合があります。私の場合、Roomデータベースにエラーがあったため、コンパイラはバインディング クラスを生成できず、これらのエラーが発生しました。

グーグルによると:

以前のバージョンのデータ バインディング コンパイラでは、マネージド コードをコンパイルする同じ手順でバインディング クラスが生成されました。マネージ コードのコンパイルに失敗した場合、バインディング クラスが見つからないことを報告する複数のエラーが発生する可能性があります。新しいデータ バインディング コンパイラは、マネージ コンパイラがアプリをビルドする前にバインディング クラスを生成することで、これらのエラーを防ぎます。

したがって、新しいデータ バインディング コンパイラを有効にするには、次のオプションをgradle.propertiesファイルに追加します。

android.databinding.enableV2=true

次のパラメータを追加して、gradle コマンドで新しいコンパイラを有効にすることもできます。

-Pandroid.databinding.enableV2=true

Android Studio バージョン3.2の新しいコンパイラはデフォルトで有効になっていることに注意してください。

于 2019-01-06T11:36:27.187 に答える
1

キーポイント

レイアウト名はsnake_caseにあります。

activity_login.xml

次に、バインディング クラス名はCamelCaseになります。

ActivityLoginBinding.java

また、レイアウト作成後にプロジェクトをビルドします。自動的に生成されない場合もあります。

于 2018-08-09T09:10:09.777 に答える
1

viewBindingなしでこれを試すと、同じ問題に直面しました

  buildFeatures {
        dataBinding true
    }

これにより、ビューバインディングのすべてを適切に機能させる際にエラーが発生します

  buildFeatures {
        dataBinding true
        viewBinding true
    }
于 2021-05-30T12:08:25.370 に答える
1

他の回答で説明されているように命名規則が正しいことを確認し、キャッシュを無効にして再起動しようとした後、一時/キャッシュフォルダーを削除しても問題は解決しませんでした。

私は次のようにそれを取り除きました: 新しいダミーの XML リソースを追加します。これにより、バインディングとそのメタデータがトリガーされ、プロジェクト全体で再作成されます。煩わしいコンパイル エラーは表示されなくなります。追加したダミー XML を削除します。

2020 年 8 月の時点で、Binding は自動的に繰り返し破損していました。ボンネットの下で噛むことができる以上に噛んでいるようです。

于 2020-08-13T04:01:52.400 に答える
0

問題は実際には次の行にある可能性があります。

<include layout="@layout/content_contact_list" />

Android Studio は少し混乱しinclude layoutlayoutタグの を取得します。さらにイライラするのは、これが最初は機能する可能性があり、後で Java/Kotlin コードを変更すると機能しなくなり、バインディングを強制的に再構築する微調整の後に再び機能することです。<include>タグを動的に入力するものに置き換えることができます。

于 2020-10-12T10:49:50.953 に答える
0

小文字へのバインドに使用したプロジェクト内のすべてのパッケージ名を作成します。

于 2021-01-31T14:17:56.367 に答える