SVG踩坑:Resources$NotFoundException: File res/drawable-hdpi-v4/

SVG踩坑:Resources$NotFoundException: File res/drawable-hdpi-v4/

项目中使用了SVG代替PNG,线上出现了Resources$NotFoundException: File res/drawable-hdpi-v4/xxx.png的异常。

Crash处的代码:

VectorDrawableCompat vectorDrawableCompat
= VectorDrawableCompat
.create(mContext.getResources()
, R.drawable.xxx, null);
mImageView.setImageDrawable(vectorDrawableCompat);

xxx.png在项目中没有导入,其实是一张xxx.svg。

这个crash产生的原因是,创建VectorDrawableCompat时以为拿到了svg转化的vectorDrawable,其实拿了一个png图片。

那png图片是怎么来的呢?

打开apk查看发现既存在了svg导入的vectorDrawable,又存在drawable-hdpi-v4/xxx.png等多种分辨率的png。这是为什么呢?

我们项目中是由于ReactNative编译bundle包造成的,具体原因不太明确。如果有了解的朋友,麻烦告知一下。

参考:
issues571
commits784

你可能感兴趣的:(Android)