Loading core/java/android/view/autofill/AutofillClientController.java +8 −1 Original line number Diff line number Diff line Loading @@ -94,8 +94,15 @@ public final class AutofillClientController implements AutofillManager.AutofillC * @hide */ public boolean isRelayoutFixEnabled() { AutofillManager autofillManager = getAutofillManager(); if (autofillManager == null) { if (Helper.sDebug) { Log.d(TAG, "isRelayoutFixEnabled() : getAutofillManager() == null"); } return false; } if (mRelayoutFix == null) { mRelayoutFix = getAutofillManager().isRelayoutFixEnabled(); mRelayoutFix = autofillManager.isRelayoutFixEnabled(); } return mRelayoutFix; } Loading Loading
core/java/android/view/autofill/AutofillClientController.java +8 −1 Original line number Diff line number Diff line Loading @@ -94,8 +94,15 @@ public final class AutofillClientController implements AutofillManager.AutofillC * @hide */ public boolean isRelayoutFixEnabled() { AutofillManager autofillManager = getAutofillManager(); if (autofillManager == null) { if (Helper.sDebug) { Log.d(TAG, "isRelayoutFixEnabled() : getAutofillManager() == null"); } return false; } if (mRelayoutFix == null) { mRelayoutFix = getAutofillManager().isRelayoutFixEnabled(); mRelayoutFix = autofillManager.isRelayoutFixEnabled(); } return mRelayoutFix; } Loading