入力にフォーカスすると、オートフィルマネージャーにバグがあり、例外がスローされます。
W/System.err: java.lang.NullPointerException: activityToken
W/System.err: at android.os.Parcel.readException(Parcel.java:2011)
W/System.err: at android.os.Parcel.readException(Parcel.java:1951)
at android.view.autofill.IAutoFillManager$Stub$Proxy.startSession(IAutoFillManager.java:397)
at android.view.autofill.AutofillManager.startSessionLocked(AutofillManager.java:1012) W/System.err: at android.view.autofill.AutofillManager.notifyViewEntered(AutofillManager.java:734) android.view.autofill.AutofillManager.notifyViewEntered(AutofillManager.java:706)
ベースアクティビティに次のコードを追加することで修正できましたonCreate()
:
public static void preventViewAutoFill(@NonNull Window window) {
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.N_MR1) {
final Method method;
try {
method = View.class.getMethod(AUTO_FILL_MANAGER_METHOD, Integer.TYPE);
} catch (Exception ignore) {
return;
}
if (method != null) {
try {
method.invoke(window.getDecorView(), IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS);
} catch (Exception ignore) {
}
}
}
}
これにより、 内の入力を除くすべてのビューの問題が修正されましたWebView
。WebView
ユーザーがアプリケーションのクラッシュ内の入力にフォーカスすると、入力フィールドを持つ WebView があります。
アプリケーション層または WebView 側でこれを修正する方法はありますか?
25 API、最小 16 をターゲットとするアプリケーション。