mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-02 08:56:55 +00:00
Bug: 141568904
Test: Manually verified use cases from following call-site (with and
without delay)
LauncherAppsCompatVO
1. (Custom Shortcut) Long click on google maps -> widgets ->
drag driving mode to workspace.
2. Open chrome -> add to home screen -> add -> add automatically.
InstallShortcutReceiver
Removed the line that trigger above flow for android O and above,
then open chrome -> add to home screen -> add -> add automatically.
ShortcutDragPreviewProvider
qdb -> long press on suggested app that has deep shortcut -> drag
to workspace.
Change-Id: I59a4d004913a8df697af1fcfe0a080b6da01eefd
96 lines
3.7 KiB
Java
96 lines
3.7 KiB
Java
/*
|
|
* Copyright (C) 2014 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.pm;
|
|
|
|
import static com.android.launcher3.util.Executors.MODEL_EXECUTOR;
|
|
import static com.android.launcher3.util.ShortcutUtil.fetchAndUpdateShortcutIconAsync;
|
|
|
|
import android.annotation.TargetApi;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.pm.LauncherApps;
|
|
import android.content.pm.LauncherApps.PinItemRequest;
|
|
import android.content.pm.ShortcutInfo;
|
|
import android.os.Build;
|
|
import android.os.Parcelable;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import com.android.launcher3.WorkspaceItemInfo;
|
|
|
|
public class PinRequestHelper {
|
|
|
|
/**
|
|
* request.accept() will initiate the following flow:
|
|
* -> go-to-system-process for actual processing (a)
|
|
* -> callback-to-launcher on UI thread (b)
|
|
* -> post callback on the worker thread (c)
|
|
* -> Update model and unpin (in system) any shortcut not in out model. (d)
|
|
*
|
|
* Note that (b) will take at-least one frame as it involves posting callback from binder
|
|
* thread to UI thread.
|
|
* If (d) happens before we add this shortcut to our model, we will end up unpinning
|
|
* the shortcut in the system.
|
|
* Here its the caller's responsibility to add the newly created WorkspaceItemInfo immediately
|
|
* to the model (which may involves a single post-to-worker-thread). That will guarantee
|
|
* that (d) happens after model is updated.
|
|
*/
|
|
@Nullable
|
|
@TargetApi(Build.VERSION_CODES.O)
|
|
public static WorkspaceItemInfo createWorkspaceItemFromPinItemRequest(
|
|
Context context, final PinItemRequest request, final long acceptDelay) {
|
|
if (request != null && request.getRequestType() == PinItemRequest.REQUEST_TYPE_SHORTCUT
|
|
&& request.isValid()) {
|
|
|
|
if (acceptDelay <= 0) {
|
|
if (!request.accept()) {
|
|
return null;
|
|
}
|
|
} else {
|
|
// Block the worker thread until the accept() is called.
|
|
MODEL_EXECUTOR.execute(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
try {
|
|
Thread.sleep(acceptDelay);
|
|
} catch (InterruptedException e) {
|
|
// Ignore
|
|
}
|
|
if (request.isValid()) {
|
|
request.accept();
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
ShortcutInfo si = request.getShortcutInfo();
|
|
WorkspaceItemInfo info = new WorkspaceItemInfo(si, context);
|
|
// Apply the unbadged icon and fetch the actual icon asynchronously.
|
|
fetchAndUpdateShortcutIconAsync(context, info, si, false);
|
|
return info;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
@TargetApi(Build.VERSION_CODES.O)
|
|
public static PinItemRequest getPinItemRequest(Intent intent) {
|
|
Parcelable extra = intent.getParcelableExtra(LauncherApps.EXTRA_PIN_ITEM_REQUEST);
|
|
return extra instanceof PinItemRequest ? (PinItemRequest) extra : null;
|
|
}
|
|
}
|