小编典典

在 Android Studio 中更改矢量资产的填充颜色

all

Android Studio 现在支持 21+ 的矢量资源,并将在编译时为较低版本生成 png。我有一个要更改填充颜色的矢量资产(来自 Material
Icons)。这适用于 21+,但生成的 png 不会改变颜色。有没有办法做到这一点?

<vector android:height="48dp" android:viewportHeight="24.0"
android:viewportWidth="24.0" android:width="48dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@color/primary" android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41z"/>

阅读 115

收藏
2022-06-24

共1个答案

小编典典

不要直接编辑矢量资源。如果您在 ImageButton 中使用矢量可绘制对象,只需在android:tint.

<ImageButton
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:id="@+id/button"
        android:src="@drawable/ic_more_vert_24dp"
        android:tint="@color/primary" />
2022-06-24