3

我想在完全使用 Jetpack compose 编写的应用程序(电子邮件和密码)中提供一些自动填充功能。我遇到了这篇博客文章和我都尝试过的演示代码。不幸的是,与文本字段交互时,我无法弹出任何窗口。

修改我的代码后,我最终使用了提供的演示。一个最小的示例如下所示(ExplicitAutofillTypesDemo可组合项取自上面提到的演示代码,未经任何修改):

class MainActivity: AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        setContent {
            ExplicitAutofillTypesDemo()
        }
    }
}

我错过了什么?我需要在其他地方启用它吗?官方的compose autofill 文档不是很有帮助。我只想在触摸上面博客文章中的文本字段时获得自动填充弹出窗口。

4

1 回答 1

1

就我而言,弹出窗口没有显示,因为自动填充似乎不适用于 Google 以外的任何其他提供商。调试日志显示以下消息:

D/Autofill Status: Autofill popup isn't shown because autofill is not available.
    
    Did you set up autofill?
    1. Go to Settings > System > Languages&input > Advanced > Autofill Service
    2. Pick a service
    
    Did you add an account?
    1. Go to Settings > System > Languages&input > Advanced
    2. Click on the settings icon next to the Autofill Service
    3. Add your account

我尝试了 Microsoft Authenticator 作为示例,但它不起作用。当我切换到谷歌时,一切都按预期工作。

于 2021-07-13T10:19:31.483 回答