Merge "Fix delay_save and multiple required fields." into qt-dev

am: eea916967a

Change-Id: I5569851b4dcc81e82eb8ae83a4f0cb8adf4d5324
This commit is contained in:
Adam He
2019-06-29 11:49:42 -07:00
committed by android-build-merger
2 changed files with 2 additions and 0 deletions

View File

@@ -2929,6 +2929,7 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
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) {

View File

@@ -227,6 +227,7 @@ final class ViewState {
if (mVirtualBounds != null) {
builder.append(", virtualBounds:" ).append(mVirtualBounds);
}
builder.append("]");
return builder.toString();
}