https://developer.android.com/about/versions/oreo/android-8.0-changes.html#all-apps
Web form autofill
Now that the Android Autofill Framework provides built-in support for autofill functionality, the following methods related to WebView objects have changed for apps installed on devices running Android 8.0 (API level 26):
WebSettings
- The getSaveFormData() method now returns false. Previously, this method returned true instead.
- Calling setSaveFormData() no longer has any effect.
WebViewDatabase
- Calling clearFormData() no longer has any effect.
- The hasFormData() method now returns false. Previously, this method returned true when the form contained data.
This is the basic example to force an autofill request
check the complete documentation