Asynclayoutinflater
异步加载布局以避免 UI 卡顿。
最新更新 | 稳定版 | 候选版 | Beta 版 | Alpha 版 |
---|---|---|---|---|
2022 年 10 月 5 日 | 1.0.0 | - | - | 1.1.0-alpha01 |
声明依赖项
要添加对 AsyncLayoutInflater 的依赖项,您必须将 Google Maven 存储库添加到您的项目中。阅读Google 的 Maven 存储库以了解更多信息。
在应用或模块的build.gradle
文件中添加所需构件的依赖项
Groovy
dependencies { implementation "androidx.asynclayoutinflater:asynclayoutinflater:1.0.0" }
Kotlin
dependencies { implementation("androidx.asynclayoutinflater:asynclayoutinflater:1.0.0") }
反馈
您的反馈有助于改进 Jetpack。如果您发现新的问题或有改进此库的想法,请告诉我们。在创建新问题之前,请查看此库中现有问题。您可以通过点击星号按钮为现有问题投票。
查看问题跟踪器文档以了解更多信息。
此构件没有发行说明。
1.1.0 版
1.1.0-alpha01 版
2022 年 10 月 5 日
androidx.asynclayoutinflater:asynclayoutinflater:1.1.0-alpha01
和 androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0-alpha01
已发布。1.1.0-alpha01 版包含这些提交。
新功能
- 在初始化
AsyncLayoutInflater
时允许配置AsyncLayoutFactory
。对于 AppCompat 上下文,这可以通过AsyncAppCompatFactory
提供,该工厂可以正确初始化 AppCompat 视图。 - inflate API 接受一个执行程序,可以在该执行程序上触发
OnInflateFinishedListener
回调。