0

我尝试实现https://developer.android.com/guide/topics/large-screens/make-apps-fold-aware文档的“带有回调的 java”部分中描述的代码。但ActivitySplitLayoutBinding无解。

这是我的build.gradle文件的摘录:

dependencies {
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.core:core:1.7.0'
implementation 'io.reactivex.rxjava2:rxjava:2.2.9'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation "androidx.window:window:1.0.0"
implementation "androidx.window:window-java:1.0.0"
implementation "androidx.window:window-rxjava2:1.0.0"
implementation 'androidx.startup:startup-runtime:1.1.1'
implementation 'androidx.navigation:navigation-fragment:2.4.1'
implementation 'androidx.navigation:navigation-ui:2.4.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
implementation 'com.opencsv:opencsv:5.0'

coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

我错过了什么?

4

1 回答 1

1

ActivitySplitLayoutBinding不是来自任何库,而只是链接到 xml 布局的视图绑定定义。

例如,在这个示例中,activity_split_layout.xml当您使用 ViewBindings 时将有一个命名的 .xml,然后您将有一个ActivitySplitLayoutBinding在您的 Activity 类中命名的定义,因此您可以从布局中访问它的所有视图。

您可以在此处了解有关 ViewBindings 的更多信息:https ://developer.android.com/topic/libraries/view-binding

希望这会有所帮助。

-塞萨尔

于 2022-02-28T09:47:29.917 回答