VectorDrawable:Android加载xhdpi PNG而不是矢量资源

前端之家收集整理的这篇文章主要介绍了VectorDrawable:Android加载xhdpi PNG而不是矢量资源前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在API21上使用VectorDrawable,但 Android会从xxhdpi文件夹中加载PNG资源.
我目前的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

原文链接:https://www.f2er.com/android/309722.html

猜你在找的Android相关文章