Merge "Create the PendingIntent for UserHandle.CURRENT" into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
e1ac825e3a
@@ -33,6 +33,7 @@ import android.graphics.drawable.Drawable;
|
||||
import android.metrics.LogMaker;
|
||||
import android.os.Handler;
|
||||
import android.os.IBinder;
|
||||
import android.os.UserHandle;
|
||||
import android.service.autofill.BatchUpdates;
|
||||
import android.service.autofill.CustomDescription;
|
||||
import android.service.autofill.InternalOnClickAction;
|
||||
@@ -196,7 +197,9 @@ final class SaveUi {
|
||||
}
|
||||
intent.putExtra(AutofillManager.EXTRA_RESTORE_CROSS_ACTIVITY, true);
|
||||
|
||||
PendingIntent p = PendingIntent.getActivity(this, 0, intent, 0);
|
||||
PendingIntent p = PendingIntent.getActivityAsUser(
|
||||
this, /* requestCode= */ 0, intent, /* flags= */ 0, /* options= */ null,
|
||||
UserHandle.CURRENT);
|
||||
if (sDebug) {
|
||||
Slog.d(TAG, "startActivity add save UI restored with intent=" + intent);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user