/* * 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.icons; import static com.android.launcher3.model.WidgetsModel.GO_DISABLE_WIDGETS; import android.content.ComponentName; import android.content.Context; import android.content.pm.LauncherApps; import android.content.pm.PackageInfo; import android.content.pm.ShortcutInfo; import android.graphics.drawable.Drawable; import android.os.UserHandle; import android.text.TextUtils; import android.util.Log; import androidx.annotation.NonNull; import com.android.launcher3.LauncherAppState; import com.android.launcher3.config.FeatureFlags; import com.android.launcher3.icons.cache.CachingLogic; import com.android.launcher3.shortcuts.ShortcutKey; import com.android.launcher3.util.Themes; /** * Caching logic for shortcuts. */ public class ShortcutCachingLogic implements CachingLogic { private static final String TAG = "ShortcutCachingLogic"; @Override public ComponentName getComponent(ShortcutInfo info) { return ShortcutKey.fromInfo(info).componentName; } @Override public UserHandle getUser(ShortcutInfo info) { return info.getUserHandle(); } @Override public CharSequence getLabel(ShortcutInfo info) { return info.getShortLabel(); } @Override public CharSequence getDescription(ShortcutInfo object, CharSequence fallback) { CharSequence label = object.getLongLabel(); return TextUtils.isEmpty(label) ? fallback : label; } @NonNull @Override public BitmapInfo loadIcon(Context context, ShortcutInfo info) { try (LauncherIcons li = LauncherIcons.obtain(context)) { Drawable unbadgedDrawable = ShortcutCachingLogic.getIcon( context, info, LauncherAppState.getIDP(context).fillResIconDpi); if (unbadgedDrawable == null) return BitmapInfo.LOW_RES_INFO; return new BitmapInfo(li.createScaledBitmapWithoutShadow( unbadgedDrawable, 0), Themes.getColorAccent(context)); } } @Override public long getLastUpdatedTime(ShortcutInfo shortcutInfo, PackageInfo info) { if (shortcutInfo == null || !FeatureFlags.ENABLE_DEEP_SHORTCUT_ICON_CACHE.get()) { return info.lastUpdateTime; } return Math.max(shortcutInfo.getLastChangedTimestamp(), info.lastUpdateTime); } @Override public boolean addToMemCache() { return false; } /** * Similar to {@link LauncherApps#getShortcutIconDrawable(ShortcutInfo, int)} with additional * Launcher specific checks */ public static Drawable getIcon(Context context, ShortcutInfo shortcutInfo, int density) { if (GO_DISABLE_WIDGETS) { return null; } try { return context.getSystemService(LauncherApps.class) .getShortcutIconDrawable(shortcutInfo, density); } catch (SecurityException | IllegalStateException e) { Log.e(TAG, "Failed to get shortcut icon", e); return null; } } }