Shadows should not be clipped on AdaptiveIconDrawable

b/36702964

Change-Id: Ic7363196aa493b4aa6a2dffa9c3e8f3399b1b3f3
This commit is contained in:
Hyunyoung Song
2017-04-05 13:15:13 -07:00
parent 128b7e59a1
commit d02a29a502
@@ -184,6 +184,17 @@ public class LauncherIcons {
bitmapDrawable.setTargetDensity(context.getResources().getDisplayMetrics());
}
}
Class iconClass = null;
if (FeatureFlags.ADAPTIVE_ICON_SHADOW && Utilities.isAtLeastO()) {
try {
iconClass = Class.forName("android.graphics.drawable.AdaptiveIconDrawable");
} catch (Exception e) {
}
}
if (iconClass != null && iconClass.isAssignableFrom(icon.getClass())) {
scale *= ShadowGenerator.getScaleForBounds(new RectF(0, 0, 0, 0));
}
int sourceWidth = icon.getIntrinsicWidth();
int sourceHeight = icon.getIntrinsicHeight();
if (sourceWidth > 0 && sourceHeight > 0) {
@@ -217,15 +228,8 @@ public class LauncherIcons {
icon.setBounds(sOldBounds);
canvas.setBitmap(null);
if (FeatureFlags.ADAPTIVE_ICON_SHADOW && Utilities.isAtLeastO()) {
try {
Class clazz = Class.forName("android.graphics.drawable.AdaptiveIconDrawable");
if (clazz.isAssignableFrom(icon.getClass())) {
bitmap = ShadowGenerator.getInstance(context).recreateIcon(bitmap);
}
} catch (Exception e) {
// do nothing
}
if (iconClass != null && iconClass.isAssignableFrom(icon.getClass())) {
bitmap = ShadowGenerator.getInstance(context).recreateIcon(bitmap);
}
return bitmap;
}