diff options
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/service/autofill/SaveInfo.java | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/core/java/android/service/autofill/SaveInfo.java b/core/java/android/service/autofill/SaveInfo.java index f5719568c1ad..dfaf49ad6a03 100644 --- a/core/java/android/service/autofill/SaveInfo.java +++ b/core/java/android/service/autofill/SaveInfo.java @@ -235,12 +235,17 @@ public final class SaveInfo implements Parcelable { */ public static final int FLAG_DONT_SAVE_ON_FINISH = 0x2; + /** - * Don't trigger the autofill save UI when the autofill context associated with the response - * associated with this {@link SaveInfo} is {@link AutofillManager#commit() committed}, - * but keep its {@link FillContext} so it's delivered in a future - * {@link AutofillService#onSaveRequest(SaveRequest, SaveCallback) save request} of an - * activity belonging to the same task. + * Postpone the autofill save UI. + * + * <p>If flag is set, the autofill save UI is not triggered when the + * autofill context associated with the response associated with this {@link SaveInfo} is + * committed (with {@link AutofillManager#commit()}). Instead, the {@link FillContext} + * is delivered in future fill requests (with {@link + * AutofillService#onFillRequest(FillRequest, android.os.CancellationSignal, FillCallback)}) + * and save request (with {@link AutofillService#onSaveRequest(SaveRequest, SaveCallback)}) + * of an activity belonging to the same task. * * <p>This flag should be used when the service detects that the application uses * multiple screens to implement an autofillable workflow (for example, one screen for the |
