如何在矢量drawable中设置colors.xml的颜色代码?

时间:2016-09-28 11:19:25

标签: android android-drawable android-vectordrawable

我想在res文件夹的colors.xml文件中设置矢量drawable中的颜色代码。

3 个答案:

答案 0 :(得分:2)

您只需使用

即可
android:fillColor="@color/colorRated"

但它可能不适用于某些低版Android设备。这就是为什么我通常使用直接的xml颜色。

android:fillColor="#9ec8e6"

所以,最后它看起来像:

<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:width="48dp"
    android:height="48dp">
    <path
        android:pathData="M23.7 12A11.7 11.7 0 0 1 12 23.7 11.7 11.7 0 0 1 0.30000019 12 11.7 11.7 0 0 1 12 0.30000019 11.7 11.7 0 0 1 23.7 12Z"
        android:fillColor="#9ec8e6" />
</vector>

答案 1 :(得分:1)

亲语法,

DrawableCompat.setTint(myImageView.getDrawable(), ContextCompat.getColor(context, R.color.your_color));

或通过xml使用fillColor

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportHeight="24"
    android:viewportWidth="24">
<path
    android:fillColor="@color/your_color"
    android:pathData="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z" />

注意:使用硬编码颜色(即#000)代替@color/your_color,有时候,它们不适用于较低的设备。

答案 2 :(得分:0)

您需要使用android:tint="@color/some_color"才能填充矢量绘图的颜色

假设你有一个ImageView你想要使用这个向量,你可以做类似的事情

<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/bg_vector"
    android:tint="@color/some_color"/>