迁移到 androidX - 不能 import/find androidx.databinding.DatabindingUtil
Migration to androidX - can't import/find androidx.databinding.DatabindingUtil
我正在开发 Android MVVM 应用程序。我只是手动切换到 androidx 库。这是我的库 build.gradle:
implementation 'com.google.code.gson:gson:2.8.5'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
implementation 'androidx.constraintlayout:constraintlayout:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0-rc02'
implementation 'com.google.android.material:material:1.0.0-rc01'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
implementation 'com.airbnb.android:lottie:2.5.5'
implementation 'androidx.recyclerview:recyclerview:1.0.0-rc02'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-runtime:2.0.0-rc01'
implementation "androidx.lifecycle:lifecycle-common-java8:2.0.0-rc01"
implementation "androidx.lifecycle:lifecycle-reactivestreams:2.0.0-rc01"
testImplementation "androidx.arch.core:core-testing:2.0.0-rc01"
implementation "androidx.room:room-runtime:2.0.0-rc01"
annotationProcessor "androidx.room:room-compiler:2.0.0-rc01"
implementation "androidx.room:room-rxjava2:2.0.0-rc01"
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
我更改了代码和布局文件中的所有内容,所有导入等等。
Gradle 可以构建成功。
在我的 MainActivity 中,我有以下代码:
viewModel = ViewModelProviders.of(this).get(MainViewModel.class);
binding = DataBindingUtil.setContentView(this, R.layout.activity_main);
binding.setVariable(BR.viewModel, viewModel);
binding.setLifecycleOwner(this);
这是我的 MainActivity 中唯一不会显示它的 androidx 版本的包:
import android.databinding.DataBindingUtil;
其他每个包都显示了他自己的 androidx
版本。当我删除导入时,我只能选择 android
版本而不是 androidx
.
我收到一个错误:binding.setLifecycleOwner(this);
那是因为 DatabindingUtil
仍然指的是 android.databinding
包而不是 androidx.databinding
包。我的 Android Studio 告诉我传递给方法 setLifecycleOwner 的参数必须是类型:anndroid.arch.lifecycle.LifecycleOwner
。
不知道为什么不能导入androidx.databinding.DatabindingUtil
包。有谁知道我该如何解决这个问题?
我确实尝试重建并使缓存失效并重新启动。
确保您使用的是 Android Studio 3.2 RC 2
在 gradle.properties
文件下面添加 2 行
android.useAndroidX=真
android.enableJetifier=真
问题是我试图手动完成。所以我升级到 Android Studio 3.2 RC 2。
之后我使用了 Android Studio 的迁移功能。
对于 Android Studio 中的迁移功能,转到 > 重构 > 迁移到 AndroidX...
当 Android Studio 之后给您错误时,请尝试重建或使用 > 文件 > 使缓存无效并重新启动。
正如@cchcc 指出的那样,不要忘记将此添加到您的 gradle.properties
:
android.useAndroidX=true
android.enableJetifier=true
我错过了
android {
dataBinding {
enabled = true
}
}
我正在开发 Android MVVM 应用程序。我只是手动切换到 androidx 库。这是我的库 build.gradle:
implementation 'com.google.code.gson:gson:2.8.5'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
implementation 'androidx.constraintlayout:constraintlayout:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0-rc02'
implementation 'com.google.android.material:material:1.0.0-rc01'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
implementation 'com.airbnb.android:lottie:2.5.5'
implementation 'androidx.recyclerview:recyclerview:1.0.0-rc02'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0-rc01'
implementation 'androidx.lifecycle:lifecycle-runtime:2.0.0-rc01'
implementation "androidx.lifecycle:lifecycle-common-java8:2.0.0-rc01"
implementation "androidx.lifecycle:lifecycle-reactivestreams:2.0.0-rc01"
testImplementation "androidx.arch.core:core-testing:2.0.0-rc01"
implementation "androidx.room:room-runtime:2.0.0-rc01"
annotationProcessor "androidx.room:room-compiler:2.0.0-rc01"
implementation "androidx.room:room-rxjava2:2.0.0-rc01"
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
我更改了代码和布局文件中的所有内容,所有导入等等。 Gradle 可以构建成功。
在我的 MainActivity 中,我有以下代码:
viewModel = ViewModelProviders.of(this).get(MainViewModel.class);
binding = DataBindingUtil.setContentView(this, R.layout.activity_main);
binding.setVariable(BR.viewModel, viewModel);
binding.setLifecycleOwner(this);
这是我的 MainActivity 中唯一不会显示它的 androidx 版本的包:
import android.databinding.DataBindingUtil;
其他每个包都显示了他自己的 androidx
版本。当我删除导入时,我只能选择 android
版本而不是 androidx
.
我收到一个错误:binding.setLifecycleOwner(this);
那是因为 DatabindingUtil
仍然指的是 android.databinding
包而不是 androidx.databinding
包。我的 Android Studio 告诉我传递给方法 setLifecycleOwner 的参数必须是类型:anndroid.arch.lifecycle.LifecycleOwner
。
不知道为什么不能导入androidx.databinding.DatabindingUtil
包。有谁知道我该如何解决这个问题?
我确实尝试重建并使缓存失效并重新启动。
确保您使用的是 Android Studio 3.2 RC 2
在
gradle.properties
文件下面添加 2 行android.useAndroidX=真
android.enableJetifier=真
问题是我试图手动完成。所以我升级到 Android Studio 3.2 RC 2。 之后我使用了 Android Studio 的迁移功能。
对于 Android Studio 中的迁移功能,转到 > 重构 > 迁移到 AndroidX...
当 Android Studio 之后给您错误时,请尝试重建或使用 > 文件 > 使缓存无效并重新启动。
正如@cchcc 指出的那样,不要忘记将此添加到您的 gradle.properties
:
android.useAndroidX=true
android.enableJetifier=true
我错过了
android {
dataBinding {
enabled = true
}
}