この問題を解決するにはどうすればよいですか。このデータバインディングを機能させることはできません。すべて試しました。 Build.gradle(モジュールアプリ)
apply plugin: 'com.Android.application'
apply plugin: 'kotlin-Android'
apply plugin: 'kotlin-Android-extensions'
apply plugin: 'kotlin-kapt'
Android {
compileSdkVersion 27
defaultConfig {
applicationId "com.fusion.alen.ask"
minSdkVersion 16
targetSdkVersion 27
multiDexEnabled true
versionCode 1
versionName "1.0"
testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
androidExtensions {
experimental = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
}
dependencies {
implementation 'com.Android.support:multidex:1.0.3'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.Android.support:appcompat-v7:27.1.1'
implementation 'com.Android.support:animated-vector-drawable:27.1.1'
implementation 'com.Android.support:support-vector-drawable:27.1.1'
implementation 'com.Android.support:customtabs:27.1.1'
implementation 'com.Android.support:cardview-v7:27.1.1'
implementation 'com.Android.support:design:27.1.1'
implementation 'com.Android.support.constraint:constraint-layout:1.1.3'
implementation 'com.Android.support:recyclerview-v7:27.1.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-Android-extensions'
repositories {
mavenCentral()
}
Kapt "com.Android.databinding:compiler:$ compiler_version"を追加しようとしましたが、エラーが発生します。 Build.gradle(モジュールプロジェクト)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
kotlin_version = '1.2.71'
compiler_version = '3.2.1'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.Android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
これは私のprofile_fragment.xmlです、私はドキュメントの指示に従いました
<layout xmlns:app="http://schemas.Android.com/apk/res-auto"
xmlns:tools="http://schemas.Android.com/tools"
xmlns:Android="http://schemas.Android.com/apk/res/Android">
<data>
<variable
name="user"
type="com.alen.ask.UserModel.User" />
</data>
<Android.support.constraint.ConstraintLayout
Android:layout_width="match_parent"
Android:layout_height="match_parent"
tools:layout_editor_absoluteY="25dp">
<LinearLayout
Android:id="@+id/profile_box"
Android:layout_width="0dp"
Android:layout_height="wrap_content"
Android:orientation="horizontal"
Android:background="@color/primaryColor"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/app_bar">
<LinearLayout
Android:id="@+id/qff_box"
Android:layout_width="0dp"
Android:layout_height="wrap_content"
Android:layout_gravity="center"
Android:layout_weight="5"
Android:orientation="horizontal"
Android:baselineAligned="false">
<LinearLayout
Android:layout_width="wrap_content"
Android:layout_height="match_parent"
Android:layout_weight="1"
Android:orientation="vertical">
<TextView
Android:id="@+id/questions_number"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:gravity="center"
Android:textSize="18sp"
Android:textStyle="bold"
**Android:text="@{user.questionsNum}"************
tools:text="0" />
</LinearLayout>
<LinearLayout
Android:layout_width="wrap_content"
Android:layout_height="match_parent"
Android:layout_weight="1"
Android:orientation="vertical">
<TextView
Android:id="@+id/followers_number"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:gravity="center"
Android:textSize="18sp"
Android:textStyle="bold"
**Android:text="@{user.followersNum}"************
tools:text="0" />
</LinearLayout>
<LinearLayout
Android:layout_width="wrap_content"
Android:layout_height="match_parent"
Android:layout_weight="1"
Android:orientation="vertical">
<TextView
Android:id="@+id/following_number"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:gravity="center"
Android:textSize="18sp"
Android:textStyle="bold"
**Android:text="@{user.followingNum}"***********
tools:text="0" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout
Android:id="@+id/app_bar"
Android:layout_width="0dp"
Android:layout_height="wrap_content"
Android:background="@color/primaryDarkColor"
Android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
Android:id="@+id/username_text"
Android:layout_width="0dp"
Android:layout_height="wrap_content"
Android:layout_marginLeft="8dp"
Android:layout_weight="1"
**Android:text="@{user.name}"**
Android:textColor="@color/primaryTextColor"
Android:textSize="18sp"
Android:layout_marginStart="8dp" />
</LinearLayout>
</Android.support.constraint.ConstraintLayout>
</layout>
私のユーザーデータクラス:
data class User(val name: String,
val email: String,
val uid: String,
val photo: String,
val postsList: ArrayList<String> = ArrayList(),
val questionsNum: Int = 0,
val followersNum: Int = 0,
val followingNum: Int = 0
)
これは、onCreateViewメソッドのProfileFragmenクラス内にあります。
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
val binding = ProfileFragmentBinding.inflate(inflater, container, false)
binding.user = user
}
その行binding.user = userは私にエラーを与えます:クラス 'UserModel.User'にアクセスできません。依存関係の欠落または競合がないかモジュールのクラスパスを確認してくださいこれを解決するにはどうすればよいですか、DataBindingのドキュメントと間違いはないと思います。プロジェクトのクリーニングと再構築を試みましたが、うまくいきませんでした。私はそれらの「kapt」依存関係を追加しようとしましたが、動作しませんでした...ファイル-> ProjectStructure-> Gradleバージョン:4.10.1、AndroidPluginVersion:3.2.1、KotlinLanguageVersion:1.2、KotlinPluginVersion:1.2.71-release-Studio3 .2-1
ありがとうございました。
フォルダの名前をUserModelからuserModelに変更し、プロジェクトをクリーンアップまたは再ビルドします。同じ問題が発生し、フォルダの最初の文字を小文字にするとエラーが消えました。将来的には、変数と同じように、フォルダー名にcamelCaseを使用します。最初の文字の大文字は通常、クラス用です。
その理由は、パッケージ名の1つがCapitalで始まるためです。
データバインディングを使用するクラス名は大文字で始まり、パッケージ名は小文字で始まる必要があります。 [これは単なるデータバインディングのためではなく、これは一般的な慣習です]
[内部的に、dataBindingがxmlのbindingImplementationを生成するとき、パッケージ名を解析してクラスを識別します。パッケージ名が大文字で始まる場合、クラス名とパッケージ名を分離できず、エラーがスローされます。]
<data class="ProfileBinding">
<variable
name="user"
type="com.alen.ask.UserModel.User" />
</data>
上記のProfileBindingクラスをFragmentクラス内で使用してインフレートします
Binding.setVariableメソッドを使用してみてください。
ファイルprofile_fragment.xml
これを置き換えてみてください
<data>
<variable
name="user"
type="com.alen.ask.UserModel.User" />
</data>
これとともに
<data>
<variable
name="user"
type="com.alen.ask.User" />
</data>
フィードバックをお寄せください。