Skip to content

Commit

Permalink
Fix delay_save and multiple required fields.
Browse files Browse the repository at this point in the history
Fixes: 136120151
Test: atest android.autofillservice.cts.SimpleSaveActivityTest#testDelayedSave
Change-Id: Ie0fd8ef0fbb8457fafc7cb5bed30813abaa0b893

Exempt-From-Owner-Approval: Felipe is no longer with the team
  • Loading branch information
Adam He authored and sganov committed Jun 29, 2019
1 parent 9dd0c56 commit 0df0822
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2929,6 +2929,7 @@ private ViewState createOrUpdateViewStateLocked(@NonNull AutofillId id, int stat
if (sVerbose) {
Slog.v(TAG, "Adding autofillable view with id " + id + " and state " + state);
}
viewState.setCurrentValue(findValueLocked(id));
mViewStates.put(id, viewState);
}
if ((state & ViewState.STATE_AUTOFILLED) != 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ public String toString() {
if (mVirtualBounds != null) {
builder.append(", virtualBounds:" ).append(mVirtualBounds);
}
builder.append("]");
return builder.toString();
}

Expand Down

0 comments on commit 0df0822

Please sign in to comment.