私は、私のAndroidアプリにデータバインディングを実装しようとしているが、私はこの問題にこだわっている:アンドロイドデータバインディング - クラスを見つけることができませんandroid.view.data
がjava.lang.ClassNotFoundException: Didn't find class "android.view.data"
マイレイアウトファイルは次のようになります:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.myapp.views.fragments.LocationSearchFragment">
<!-- data setup -->
<data>
<variable name="location"
type="com.myapp.models.Address" />
</data>
</LinearLayout>
</layout>
私は次の行で私のbuild.gradle
ファイルを更新:
dataBinding {
enabled = true
}
ドキュメントの示唆:https://developer.android.com/topic/libraries/data-binding/index.html。私はAndroid Studioの最新バージョンを実行しています。あなたのLinearLayout
の外にあなたのdata
定義を配置する必要があり