2019-05-14 15:23:48 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2019 The Android Open Source Project
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-06-28 15:14:02 -07:00
|
|
|
package com.android.launcher3.util;
|
2019-05-14 15:23:48 -07:00
|
|
|
|
2022-04-14 21:21:47 -07:00
|
|
|
import static android.app.PendingIntent.FLAG_MUTABLE;
|
|
|
|
|
import static android.app.PendingIntent.FLAG_ONE_SHOT;
|
|
|
|
|
import static android.app.PendingIntent.FLAG_UPDATE_CURRENT;
|
|
|
|
|
|
2023-06-22 11:17:29 -07:00
|
|
|
import static com.android.launcher3.Utilities.allowBGLaunch;
|
|
|
|
|
|
2019-05-14 15:23:48 -07:00
|
|
|
import android.app.Activity;
|
2023-06-22 11:17:29 -07:00
|
|
|
import android.app.ActivityOptions;
|
2019-05-14 15:23:48 -07:00
|
|
|
import android.app.PendingIntent;
|
|
|
|
|
import android.app.PendingIntent.CanceledException;
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
import android.content.Intent;
|
|
|
|
|
import android.content.IntentSender;
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
|
import android.os.Parcel;
|
|
|
|
|
import android.os.Parcelable;
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
2023-06-28 15:14:02 -07:00
|
|
|
/**
|
|
|
|
|
* Wrapper class for parameters to start an activity.
|
|
|
|
|
*/
|
2019-05-14 15:23:48 -07:00
|
|
|
public class StartActivityParams implements Parcelable {
|
|
|
|
|
|
|
|
|
|
private static final String TAG = "StartActivityParams";
|
|
|
|
|
|
2019-06-12 00:17:53 -07:00
|
|
|
private final PendingIntent mPICallback;
|
2019-05-14 15:23:48 -07:00
|
|
|
public final int requestCode;
|
|
|
|
|
|
|
|
|
|
public Intent intent;
|
|
|
|
|
|
|
|
|
|
public IntentSender intentSender;
|
|
|
|
|
public Intent fillInIntent;
|
|
|
|
|
public int flagsMask;
|
|
|
|
|
public int flagsValues;
|
|
|
|
|
public int extraFlags;
|
|
|
|
|
public Bundle options;
|
|
|
|
|
|
|
|
|
|
public StartActivityParams(Activity activity, int requestCode) {
|
2019-06-12 00:17:53 -07:00
|
|
|
this(activity.createPendingResult(requestCode, new Intent(),
|
2022-04-14 21:21:47 -07:00
|
|
|
FLAG_ONE_SHOT | FLAG_UPDATE_CURRENT | FLAG_MUTABLE), requestCode);
|
2019-06-12 00:17:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public StartActivityParams(PendingIntent pendingIntent, int requestCode) {
|
|
|
|
|
this.mPICallback = pendingIntent;
|
2019-05-14 15:23:48 -07:00
|
|
|
this.requestCode = requestCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private StartActivityParams(Parcel parcel) {
|
2019-06-12 00:17:53 -07:00
|
|
|
mPICallback = parcel.readTypedObject(PendingIntent.CREATOR);
|
2019-05-14 15:23:48 -07:00
|
|
|
requestCode = parcel.readInt();
|
|
|
|
|
intent = parcel.readTypedObject(Intent.CREATOR);
|
|
|
|
|
|
|
|
|
|
intentSender = parcel.readTypedObject(IntentSender.CREATOR);
|
|
|
|
|
fillInIntent = parcel.readTypedObject(Intent.CREATOR);
|
|
|
|
|
flagsMask = parcel.readInt();
|
|
|
|
|
flagsValues = parcel.readInt();
|
|
|
|
|
extraFlags = parcel.readInt();
|
|
|
|
|
options = parcel.readBundle();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int describeContents() {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void writeToParcel(Parcel parcel, int flags) {
|
2019-06-12 00:17:53 -07:00
|
|
|
parcel.writeTypedObject(mPICallback, flags);
|
2019-05-14 15:23:48 -07:00
|
|
|
parcel.writeInt(requestCode);
|
|
|
|
|
parcel.writeTypedObject(intent, flags);
|
|
|
|
|
|
|
|
|
|
parcel.writeTypedObject(intentSender, flags);
|
|
|
|
|
parcel.writeTypedObject(fillInIntent, flags);
|
|
|
|
|
parcel.writeInt(flagsMask);
|
|
|
|
|
parcel.writeInt(flagsValues);
|
|
|
|
|
parcel.writeInt(extraFlags);
|
|
|
|
|
parcel.writeBundle(options);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-28 15:14:02 -07:00
|
|
|
/** Perform the operation on the pendingIntent. */
|
2019-05-14 15:23:48 -07:00
|
|
|
public void deliverResult(Context context, int resultCode, Intent data) {
|
2023-06-22 11:17:29 -07:00
|
|
|
ActivityOptions options = allowBGLaunch(ActivityOptions.makeBasic());
|
2019-05-14 15:23:48 -07:00
|
|
|
try {
|
2019-06-12 00:17:53 -07:00
|
|
|
if (mPICallback != null) {
|
2023-06-22 11:17:29 -07:00
|
|
|
mPICallback.send(context, resultCode, data, null, null, null, options.toBundle());
|
2019-06-12 00:17:53 -07:00
|
|
|
}
|
2019-05-14 15:23:48 -07:00
|
|
|
} catch (CanceledException e) {
|
|
|
|
|
Log.e(TAG, "Unable to send back result", e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final Parcelable.Creator<StartActivityParams> CREATOR =
|
2023-06-28 15:14:02 -07:00
|
|
|
new Parcelable.Creator<>() {
|
2019-05-14 15:23:48 -07:00
|
|
|
public StartActivityParams createFromParcel(Parcel source) {
|
|
|
|
|
return new StartActivityParams(source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public StartActivityParams[] newArray(int size) {
|
|
|
|
|
return new StartActivityParams[size];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|