Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Асинклоуинфлатер
Раздувайте макеты асинхронно, чтобы избежать зависаний в пользовательском интерфейсе.
Последнее обновление | Стабильный выпуск | Кандидат на выпуск | Бета-версия | Альфа-релиз |
---|
9 апреля 2025 г. | 1.1.0 | - | - | - |
Объявление зависимостей
Чтобы добавить зависимость от AsyncLayoutInflater, необходимо добавить в свой проект репозиторий Google Maven. Для получения дополнительной информации прочтите репозиторий Google Maven .
Добавьте зависимости для нужных вам артефактов в файл build.gradle
для вашего приложения или модуля:
классный
dependencies {
implementation "androidx.asynclayoutinflater:asynclayoutinflater:1.1.0"
}
Котлин
dependencies {
implementation("androidx.asynclayoutinflater:asynclayoutinflater:1.1.0")
}
Обратная связь
Ваши отзывы помогают сделать Jetpack лучше. Дайте нам знать, если вы обнаружите новые проблемы или у вас есть идеи по улучшению этой библиотеки. Пожалуйста, ознакомьтесь с существующими проблемами в этой библиотеке, прежде чем создавать новую. Вы можете добавить свой голос к существующей проблеме, нажав кнопку со звездочкой.
Создать новую задачу
Дополнительную информацию см. в документации по системе отслеживания проблем .
Для этого артефакта нет примечаний к выпуску.
Версия 1.1.0
Версия 1.1.0
9 апреля 2025 г.
Выпущены androidx.asynclayoutinflater:asynclayoutinflater:1.1.0
и androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0
. Версия 1.1.0 содержит эти коммиты .
Важные изменения с версии 1.0.0
- Позволяет настроить
AsyncLayoutFactory
при инициализации AsyncLayoutInflater
. Для контекста AppCompat это можно предоставить с помощью AsyncAppCompatFactory
, который правильно инициализирует представления AppCompat. - API-интерфейс
inflate
принимает исполнителя, на котором может быть запущен обратный вызов OnInflateFinishedListener
.
Версия 1.1.0-rc01
26 марта 2025 г.
androidx.asynclayoutinflater:asynclayoutinflater:1.1.0-rc01
и androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0-rc01
выпущены без каких-либо заметных изменений со времени последней бета-версии. Версия 1.1.0-rc01 содержит эти коммиты .
Версия 1.1.0-бета01
12 марта 2025 г.
Выпущены androidx.asynclayoutinflater:asynclayoutinflater:1.1.0-beta01
и androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0-beta01
. Версия 1.1.0-beta01 содержит эти коммиты .
Исправления ошибок
- Эта библиотека теперь использует аннотации NULL NULL JSpecify , которые являются типизированными. Разработчики Kotlin должны использовать следующий аргумент компилятора для обеспечения правильного использования:
-Xjspecify-annotations=strict
(это значение по умолчанию, начиная с версии 2.1.0 компилятора Kotlin). ( I32dda , б / 326456246 )
Версия 1.1.0-альфа01
5 октября 2022 г.
Выпущены androidx.asynclayoutinflater:asynclayoutinflater:1.1.0-alpha01
и androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0-alpha01
. Версия 1.1.0-alpha01 содержит эти коммиты.
Новые возможности
- Позволяет настроить
AsyncLayoutFactory
при инициализации AsyncLayoutInflater
. Для контекста AppCompat это можно предоставить с помощью AsyncAppCompatFactory
, который правильно инициализирует представления AppCompat. - API-интерфейс inflate принимает исполнителя, на котором может быть запущен обратный вызов
OnInflateFinishedListener
.
Контент и образцы кода на этой странице предоставлены по лицензиям. Java и OpenJDK – это зарегистрированные товарные знаки корпорации Oracle и ее аффилированных лиц.
Последнее обновление: 2025-07-29 UTC.
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2025-07-29 UTC."],[],[],null,["# Asynclayoutinflater\n===================\n\nAPI Reference \n[androidx.asynclayoutinflater.view](/reference/kotlin/androidx/asynclayoutinflater/view/package-summary) \nInflate layouts asynchronously to avoid jank in the UI. \n\n| Latest Update | Stable Release | Release Candidate | Beta Release | Alpha Release |\n|---------------|---------------------------------------------------------------|-------------------|--------------|---------------|\n| April 9, 2025 | [1.1.0](/jetpack/androidx/releases/asynclayoutinflater#1.1.0) | - | - | - |\n\nDeclaring dependencies\n----------------------\n\nTo add a dependency on AsyncLayoutInflater, you must add the Google Maven repository to your\nproject. Read [Google's Maven repository](/studio/build/dependencies#google-maven)\nfor more information.\n\nAdd the dependencies for the artifacts you need in the `build.gradle` file for\nyour app or module: \n\n### Groovy\n\n```groovy\ndependencies {\n implementation \"androidx.asynclayoutinflater:asynclayoutinflater:1.1.0\"\n}\n```\n\n### Kotlin\n\n```kotlin\ndependencies {\n implementation(\"androidx.asynclayoutinflater:asynclayoutinflater:1.1.0\")\n}\n```\n\nFeedback\n--------\n\nYour feedback helps make Jetpack better. Let us know if you discover new issues or have\nideas for improving this library. Please take a look at the\n[existing issues](https://issuetracker.google.com/issues?q=componentid:460550%20status:open)\nin this library before you create a new one. You can add your vote to an existing issue by\nclicking the star button.\n\n[Create a new issue](https://issuetracker.google.com/issues/new?component=460550&template=1422675)\n\nSee the [Issue Tracker documentation](https://developers.google.com/issue-tracker)\nfor more information.\n\nThere are no release notes for this artifact.\n\nVersion 1.1.0\n-------------\n\n### Version 1.1.0\n\nApril 9, 2025\n\n`androidx.asynclayoutinflater:asynclayoutinflater:1.1.0` and `androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0` are released. Version 1.1.0 contains [these commits](https://android.googlesource.com/platform/frameworks/support/+log/f85ba4f521f334ee3e92ab0ff3359be2d281c2b9..7dd3136de5363becb496bfdb2c98bf89d4eb7305/asynclayoutinflater).\n\n**Important changes since 1.0.0**\n\n- Allows configuring a `AsyncLayoutFactory` when initializing `AsyncLayoutInflater`. For AppCompat context, this can be provided through `AsyncAppCompatFactory` which initializes AppCompat views correctly.\n- The `inflate` API accepts an executor on which `OnInflateFinishedListener` callback can be triggered.\n\n### Version 1.1.0-rc01\n\nMarch 26, 2025\n\n`androidx.asynclayoutinflater:asynclayoutinflater:1.1.0-rc01` and `androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0-rc01` are released with no notable changes since the last beta. Version 1.1.0-rc01 contains [these commits](https://android.googlesource.com/platform/frameworks/support/+log/8870a8ee99ec618927a9edb4b6e74b8570381149..f85ba4f521f334ee3e92ab0ff3359be2d281c2b9/).\n\n### Version 1.1.0-beta01\n\nMarch 12, 2025\n\n`androidx.asynclayoutinflater:asynclayoutinflater:1.1.0-beta01` and `androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0-beta01` are released. Version 1.1.0-beta01 contains [these commits](https://android.googlesource.com/platform/frameworks/support/+log/4586cf6e518f0c59410ef2b291e34ff9fdcff4e1..8870a8ee99ec618927a9edb4b6e74b8570381149/asynclayoutinflater).\n\n**Bug Fixes**\n\n- This library now uses [JSpecify nullness annotations](https://jspecify.dev/), which are type-use. Kotlin developers should use the following compiler argument to enforce correct usage: `-Xjspecify-annotations=strict` (this is the default starting with version 2.1.0 of the Kotlin compiler). ([I32dda](https://android-review.googlesource.com/#/q/I32ddafb7e7412d5570a803f82d3e1f45b2febd4c), [b/326456246](https://issuetracker.google.com/issues/326456246))\n\n### Version 1.1.0-alpha01\n\nOctober 5, 2022\n\n`androidx.asynclayoutinflater:asynclayoutinflater:1.1.0-alpha01` and `androidx.asynclayoutinflater:asynclayoutinflater-appcompat:1.1.0-alpha01` are released. [Version 1.1.0-alpha01 contains these commits.](https://android.googlesource.com/platform/frameworks/support/+log/4586cf6e518f0c59410ef2b291e34ff9fdcff4e1/asynclayoutinflater)\n\n**New Features**\n\n- Allows configuring a `AsyncLayoutFactory` when initialzing `AsyncLayoutInflater`. For AppCompat context, this can be provided through `AsyncAppCompatFactory` which initializes AppCompat views correctly.\n- The inflate API accepts an executor on which `OnInflateFinishedListener` callback can be triggered."]]