https://developer.android.com/about/versions/oreo/android-8.0-changes.html#all-apps
网络表单自动填充
现在Android自动填充框架提供了对自动填充功能的内置支持,对于运行Android 8.0(API级别26)的设备上安装的应用程序,以下与WebView对象相关的方法已发生变化:
WebSettings
WebViewDatabase
答案 0 :(得分:1)
这是强制执行自动填充请求的基本示例
public void eventHandler(View view) {
AutofillManager afm = context.getSystemService(AutofillManager.class);
if (afm != null) {
afm.requestAutofill();
}
}
检查完整的documentation