mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 03:08:19 +00:00
1. Fix a crash from http://cs/android-internal/packages/apps/Launcher3/src/com/android/launcher3/Launcher.java;l=1928;rcl=d677caa75de74f1c3a88367cad67ae405fd2903d. It can also be `ITEM_TYPE_SEARCH_ACTION`. Remove the `itemType` check and just use the `PendingAddItemInfo` class type. 2. Override `startConfigActivity` in `PinShortcutRequestActivityInfo`, so that `Launcher#onActivityResult` can be triggered properly from `Launcher#processShortcutFromDrop` (http://cs/android-internal/packages/apps/Launcher3/src/com/android/launcher3/Launcher.java;l=1939;rcl=d677caa75de74f1c3a88367cad67ae405fd2903d ) 3. Then we call to `Launcher#completeAdd` -> `completeAddShortcut`. The original `info` passed to `processShortcutFromDrop` doesn’t have a `componentName` (new code), so remove the component non-null check from `completeAddShortcut`. Bug: 287166186 Bug: 287167527 Bug: 287166771 Test: manual Flag: N/A Change-Id: Id3e1444de188f2d2af760f58e3d9814a2b7abd88
122 lines
4.0 KiB
Java
122 lines
4.0 KiB
Java
/*
|
|
* 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.
|
|
*/
|
|
|
|
package com.android.launcher3.util;
|
|
|
|
import static android.app.PendingIntent.FLAG_MUTABLE;
|
|
import static android.app.PendingIntent.FLAG_ONE_SHOT;
|
|
import static android.app.PendingIntent.FLAG_UPDATE_CURRENT;
|
|
|
|
import static com.android.launcher3.Utilities.allowBGLaunch;
|
|
|
|
import android.app.Activity;
|
|
import android.app.ActivityOptions;
|
|
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;
|
|
|
|
/**
|
|
* Wrapper class for parameters to start an activity.
|
|
*/
|
|
public class StartActivityParams implements Parcelable {
|
|
|
|
private static final String TAG = "StartActivityParams";
|
|
|
|
private final PendingIntent mPICallback;
|
|
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) {
|
|
this(activity.createPendingResult(requestCode, new Intent(),
|
|
FLAG_ONE_SHOT | FLAG_UPDATE_CURRENT | FLAG_MUTABLE), requestCode);
|
|
}
|
|
|
|
public StartActivityParams(PendingIntent pendingIntent, int requestCode) {
|
|
this.mPICallback = pendingIntent;
|
|
this.requestCode = requestCode;
|
|
}
|
|
|
|
private StartActivityParams(Parcel parcel) {
|
|
mPICallback = parcel.readTypedObject(PendingIntent.CREATOR);
|
|
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) {
|
|
parcel.writeTypedObject(mPICallback, flags);
|
|
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);
|
|
}
|
|
|
|
/** Perform the operation on the pendingIntent. */
|
|
public void deliverResult(Context context, int resultCode, Intent data) {
|
|
ActivityOptions options = allowBGLaunch(ActivityOptions.makeBasic());
|
|
try {
|
|
if (mPICallback != null) {
|
|
mPICallback.send(context, resultCode, data, null, null, null, options.toBundle());
|
|
}
|
|
} catch (CanceledException e) {
|
|
Log.e(TAG, "Unable to send back result", e);
|
|
}
|
|
}
|
|
|
|
public static final Parcelable.Creator<StartActivityParams> CREATOR =
|
|
new Parcelable.Creator<>() {
|
|
public StartActivityParams createFromParcel(Parcel source) {
|
|
return new StartActivityParams(source);
|
|
}
|
|
|
|
public StartActivityParams[] newArray(int size) {
|
|
return new StartActivityParams[size];
|
|
}
|
|
};
|
|
}
|