84b48d8deb
All existing legacy shortcuts will be migrated one-time to deep shortcuts This shortcuts are pinned under the Launcher package, with custom badging Bug: 275875209 Test: Updated unit tests Flag: N/A Change-Id: I7da001f724776ad8d6c807517b7e4e259de626c2
91 lines
3.1 KiB
Java
91 lines
3.1 KiB
Java
/*
|
|
* Copyright (C) 2021 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.model.data;
|
|
|
|
import static android.graphics.BitmapFactory.decodeByteArray;
|
|
|
|
import android.content.Context;
|
|
import android.content.pm.LauncherActivityInfo;
|
|
import android.util.Log;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
|
|
import com.android.launcher3.icons.LauncherIcons;
|
|
|
|
/**
|
|
* Class representing one request for an icon to be queried in a sql database.
|
|
*
|
|
* @param <T> ItemInfoWithIcon subclass whose title and icon can be loaded and filled by an sql
|
|
* query.
|
|
*/
|
|
public class IconRequestInfo<T extends ItemInfoWithIcon> {
|
|
|
|
private static final String TAG = "IconRequestInfo";
|
|
|
|
@NonNull public final T itemInfo;
|
|
@Nullable public final LauncherActivityInfo launcherActivityInfo;
|
|
@Nullable public final byte[] iconBlob;
|
|
public final boolean useLowResIcon;
|
|
|
|
public IconRequestInfo(
|
|
@NonNull T itemInfo,
|
|
@Nullable LauncherActivityInfo launcherActivityInfo,
|
|
boolean useLowResIcon) {
|
|
this(
|
|
itemInfo,
|
|
launcherActivityInfo,
|
|
/* iconBlob= */ null,
|
|
useLowResIcon);
|
|
}
|
|
|
|
public IconRequestInfo(
|
|
@NonNull T itemInfo,
|
|
@Nullable LauncherActivityInfo launcherActivityInfo,
|
|
@Nullable byte[] iconBlob,
|
|
boolean useLowResIcon) {
|
|
this.itemInfo = itemInfo;
|
|
this.launcherActivityInfo = launcherActivityInfo;
|
|
this.iconBlob = iconBlob;
|
|
this.useLowResIcon = useLowResIcon;
|
|
}
|
|
|
|
/**
|
|
* Loads this request's item info's title. This method should only be used on IconRequestInfos
|
|
* for WorkspaceItemInfos.
|
|
*/
|
|
public boolean loadWorkspaceIcon(Context context) {
|
|
if (!(itemInfo instanceof WorkspaceItemInfo)) {
|
|
throw new IllegalStateException(
|
|
"loadWorkspaceIcon should only be use for a WorkspaceItemInfos: " + itemInfo);
|
|
}
|
|
|
|
try (LauncherIcons li = LauncherIcons.obtain(context)) {
|
|
WorkspaceItemInfo info = (WorkspaceItemInfo) itemInfo;
|
|
// Failed to load from resource, try loading from DB.
|
|
if (iconBlob == null) {
|
|
return false;
|
|
}
|
|
info.bitmap = li.createIconBitmap(decodeByteArray(
|
|
iconBlob, 0, iconBlob.length));
|
|
return true;
|
|
} catch (Exception e) {
|
|
Log.e(TAG, "Failed to decode byte array for info " + itemInfo, e);
|
|
return false;
|
|
}
|
|
}
|
|
}
|