AdaptiveIconView icon indicating copy to clipboard operation
AdaptiveIconView copied to clipboard

Some icons have wrong background

Open Fossor opened this issue 4 years ago • 0 comments

With apps like ZEDGE and some other the background is ignored. You can add try/catch to these lines in AdaptiveIcon.java to fix that:

try {
    iconName = resources.getResourceName(manifestParser.getAttributeResourceValue(ANDROID_SCHEMA, "icon", 0));
    if (iconName.contains("/"))
        iconName = iconName.split("/")[1];
}catch (Exception e){
}

Fossor avatar May 01 '20 08:05 Fossor