---
title: "autofillManager"
type: "property"
lastmod: "2026-08-27"
---
## API Reference

> Source set: Android

```kotlin
override val autofillManager: AndroidAutofillManager? =
        if (autofillSupported()) {
            AndroidAutofillManager(
                platformAutofillManager = PlatformAutofillManagerImpl(context),
                semanticsOwner = semanticsOwner,
                view = this,
                rectManager = rectManager,
                packageName = context.packageName,
            )
        } else {
            null
        }
```
