我正在尝试在API21上使用VectorDrawable,但
Android会从xxhdpi文件夹中加载PNG资源.
我目前的res结构如下:
我目前的res结构如下:
> res
> drawable-xxhdpi
> test_icon.png
> drawable-21
> test_icon.xml
我的XML布局:
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/test_icon"/>
有没有其他方法可以解决这个问题?根据我的理解,Android将始终选择PNG资源,但如果是这样的话,那么如何使用VectorDrawables将API21和PNG用于较低的API?
[更新1]
如果我们使用drawable-xxhdpi-21资源文件夹,Android将选择向量而不是PNG资源.但这意味着我们必须拥有该文件的副本(或符号链接)以用于其他密度(例如xhdpi,hdpi等)
解决方法
drawable-anydpi-v21是正确的
drawable-anydpi-v21/test_icon.xml
https://google.github.io/material-design-icons/#icons-for-android