1

我想让用户自动填充框架设置屏幕,以使AutoFill框架能够自动填充第三方应用程序中的登录表单。

那么,如何以编程方式让用户进入Oreo设备中的自动填充设置屏幕?

4

2 回答 2

1

先决条件:

用户必须启用自动填充服务。设置 > 系统 > 语言和输入 > 高级 > 输入帮助 > 自动填充服务。

1.提供自动填充提示

自动填充服务通过提供可以自动填充的每个视图的含义来正确分类数据,例如表示用户名和密码的视图。

xml:

android:autofillHints="AUTOFILL_HINT_USERNAME"

或者

爪哇:

editText.setAutofillHints(View.AUTOFILL_HINT_USERNAME);

2.强制自动填充请求

AutofillManager afm = getSystemService(AutofillManager.class);
if (afm != null) {
    if (afm.isEnabled()) {   //for afmanager is enabled or not
        afm.requestAutofill(editText);
    }
}
于 2017-11-13T13:45:56.930 回答
1

经过长时间的搜索,我从 gitup 项目中找到了答案。

以编程方式让用户自动填充设置屏幕的代码如下

   if (mAutofillManager != null && !mAutofillManager.hasEnabledAutofillServices()) {
        Intent intent = new Intent(Settings.ACTION_REQUEST_SET_AUTOFILL_SERVICE);
        intent.setData(Uri.parse("package:com.example.android"));
        startActivityForResult(intent, REQUEST_CODE_SET_DEFAULT);
    }
于 2017-11-15T05:49:41.033 回答