获得anddroid8.0桌面图标,适应AdaptiveIconDrawable

在Android 8.0及以上系统中,获取应用图标时会出现AdaptiveIconDrawable相关错误,导致应用崩溃。原因是Android 8.0引入了自适应图标。为了解决这个问题,需要采用特定的方法来正确处理AdaptiveIconDrawable。
摘要由CSDN通过智能技术生成

获取应用图标时,8.0以上系统会报.AdaptiveIconDrawable.getOutline(AdaptiveIconDrawable.java:405)和AdaptiveIconDrawable.isProjected错误,导致项目崩溃。是因为8.0以后Google添加了自适应图标AdaptiveIconDrawable,所以获取图标使用下面的方法

@RequiresApi(api = Build.VERSION_CODES.O)
    public static Bitmap getAppIconFor8(Context context, String packageName) {

        PackageManager mPackageManager = context.getPackageManager();
        Bitmap bitmap =null;
        try {
            Drawable drawable = mPackageManager.getApplicationIcon(packageName);

            if (drawable instanceof BitmapDrawable) {
                bitmap =((BitmapDrawable) drawable).getBitmap();
            } else if (drawable instanceof AdaptiveIconDrawable) {
                int j = drawable.getIntrinsicWidth();
                int k = drawable.getIntrinsicHeight();
                int i = j;
                if (j <= 0) {
                    i = 1;
   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值