203

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"/>

4

17 回答 17

396

不要直接编辑矢量资源。如果您在 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" />
于 2015-10-03T20:04:54.050 回答
107

你能行的。

但是您不能将@color 引用用于颜色(..lame),否则它仅适用于 L+

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24.0"
    android:viewportHeight="24.0">
<path
    android:fillColor="#FFAABB"
    android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zm-6,0C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>

于 2015-11-05T19:25:21.233 回答
74

正如在其他答案中所说,不要直接编辑可绘制的矢量,而是可以在 java 代码中进行着色,如下所示:

    mWrappedDrawable = mDrawable.mutate();
    mWrappedDrawable = DrawableCompat.wrap(mWrappedDrawable);
    DrawableCompat.setTint(mWrappedDrawable, mColor);
    DrawableCompat.setTintMode(mWrappedDrawable, PorterDuff.Mode.SRC_IN);

为了简单起见,我创建了一个辅助类:

import android.content.Context;
import android.graphics.PorterDuff;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.support.annotation.ColorRes;
import android.support.annotation.DrawableRes;
import android.support.annotation.NonNull;
import android.support.v4.content.ContextCompat;
import android.support.v4.graphics.drawable.DrawableCompat;
import android.view.MenuItem;
import android.view.View;
import android.widget.ImageView;

/**
 * {@link Drawable} helper class.
 *
 * @author Filipe Bezerra
 * @version 18/01/2016
 * @since 18/01/2016
 */
public class DrawableHelper {
    @NonNull Context mContext;
    @ColorRes private int mColor;
    private Drawable mDrawable;
    private Drawable mWrappedDrawable;

    public DrawableHelper(@NonNull Context context) {
        mContext = context;
    }

    public static DrawableHelper withContext(@NonNull Context context) {
        return new DrawableHelper(context);
    }

    public DrawableHelper withDrawable(@DrawableRes int drawableRes) {
        mDrawable = ContextCompat.getDrawable(mContext, drawableRes);
        return this;
    }

    public DrawableHelper withDrawable(@NonNull Drawable drawable) {
        mDrawable = drawable;
        return this;
    }

    public DrawableHelper withColor(@ColorRes int colorRes) {
        mColor = ContextCompat.getColor(mContext, colorRes);
        return this;
    }

    public DrawableHelper tint() {
        if (mDrawable == null) {
            throw new NullPointerException("É preciso informar o recurso drawable pelo método withDrawable()");
        }

        if (mColor == 0) {
            throw new IllegalStateException("É necessário informar a cor a ser definida pelo método withColor()");
        }

        mWrappedDrawable = mDrawable.mutate();
        mWrappedDrawable = DrawableCompat.wrap(mWrappedDrawable);
        DrawableCompat.setTint(mWrappedDrawable, mColor);
        DrawableCompat.setTintMode(mWrappedDrawable, PorterDuff.Mode.SRC_IN);

        return this;
    }

    @SuppressWarnings("deprecation")
    public void applyToBackground(@NonNull View view) {
        if (mWrappedDrawable == null) {
            throw new NullPointerException("É preciso chamar o método tint()");
        }

        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
            view.setBackground(mWrappedDrawable);
        } else {
            view.setBackgroundDrawable(mWrappedDrawable);
        }
    }

    public void applyTo(@NonNull ImageView imageView) {
        if (mWrappedDrawable == null) {
            throw new NullPointerException("É preciso chamar o método tint()");
        }

        imageView.setImageDrawable(mWrappedDrawable);
    }

    public void applyTo(@NonNull MenuItem menuItem) {
        if (mWrappedDrawable == null) {
            throw new NullPointerException("É preciso chamar o método tint()");
        }

        menuItem.setIcon(mWrappedDrawable);
    }

    public Drawable get() {
        if (mWrappedDrawable == null) {
            throw new NullPointerException("É preciso chamar o método tint()");
        }

        return mWrappedDrawable;
    }
}

要使用,只需执行以下操作:

    DrawableHelper
            .withContext(this)
            .withColor(R.color.white)
            .withDrawable(R.drawable.ic_search_24dp)
            .tint()
            .applyTo(mSearchItem);

或者:

    final Drawable drawable = DrawableHelper
            .withContext(this)
            .withColor(R.color.white)
            .withDrawable(R.drawable.ic_search_24dp)
            .tint()
            .get();

    actionBar.setHomeAsUpIndicator(drawable);
于 2016-01-29T12:06:09.860 回答
43

要更改矢量图像颜色,您可以直接使用android:tint="@color/colorAccent"

<ImageView
        android:id="@+id/ivVectorImage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_account_circle_black_24dp"
        android:tint="@color/colorAccent" />

以编程方式更改颜色

ImageView ivVectorImage = (ImageView) findViewById(R.id.ivVectorImage);
ivVectorImage.setColorFilter(getResources().getColor(R.color.colorPrimary));
于 2016-07-25T13:56:55.293 回答
16

目前的工作解决方案是 android:fillColor="#FFFFFF"

除了向量中的硬编码外,没有什么对我有用

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24.0"
      android:fillColor="#FFFFFF"
    android:viewportHeight="24.0">
<path
    android:fillColor="#FFFFFF"
    android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zm-6,0C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>

但是,fillcolor 和 tint 可能很快就会起作用。请参阅此讨论以获取更多信息:

https://code.google.com/p/android/issues/detail?id=186431

此外,颜色可能会保留在缓存中,因此删除所有用户的应用程序可能会有所帮助。

于 2015-11-29T20:02:02.870 回答
11

更新:AppCompat支持

其他怀疑是否android:tint仅适用于 21+ 设备的答案,AppCompat(v23.2.0 及更高版本现在提供了向后兼容的色调属性处理。

因此,操作过程将是使用AppCompatImageViewand app:srcCompat(在 AppCompat 命名空间中)而不是android:src(Android 命名空间)。

这是一个示例(AndroidX:这是androidx.appcompat.widget.AppCompatImageView ;)):

<android.support.v7.widget.AppCompatImageView
        android:id="@+id/credits_material_icon"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:layout_marginBottom="8dp"
        android:layout_marginLeft="16dp"
        android:layout_marginStart="16dp"
        android:scaleType="fitCenter"
        android:tint="#ffd2ee"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:srcCompat="@drawable/ic_dollar_coin_stack" />

并且不要忘记在 gradle 中启用矢量可绘制支持:

vectorDrawables.useSupportLibrary = true 
于 2017-07-16T18:31:31.880 回答
7

Android Studio 现在支持矢量 pre-lollipop。没有PNG转换。您仍然可以更改填充颜色,它会起作用。

在你的 ImageView 中,使用

 app:srcCompat="@drawable/ic_more_vert_24dp"

在你的 gradle 文件中,

 // Gradle Plugin 2.0+  
 android {  
   defaultConfig {  
     vectorDrawables.useSupportLibrary = true  
   }  
 }  

 compile 'com.android.support:design:23.4.0'
于 2016-06-09T23:44:24.500 回答
3

如果向量没有使用 fillColor 显示单独设置的颜色,则它们可能被设置为默认的小部件参数。

尝试添加app:itemIconTint="@color/lime"到 activity_main.xml 以设置小部件图标的默认颜色类型。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        app:itemIconTint="@color/lime"
        app:menu="@menu/activity_main_drawer" />

</android.support.v4.widget.DrawerLayout>

VectorDrawable@developers.android

于 2017-09-09T23:59:40.937 回答
2

将此库添加到 Gradle 以在旧的 android 设备中启用颜色矢量绘制。

compile 'com.android.support:palette-v7:26.0.0-alpha1'

并重新同步gradle。我认为它会解决问题。

于 2017-07-10T07:35:57.947 回答
1

对于我的 ImageButton,我使用app:tint="@color/green"而不是android:tint

于 2021-08-08T17:40:51.853 回答
1

如果您希望支持旧版本的 pre lolipop

使用相同的 xml 代码并进行一些更改

而不是正常的ImageView --> AppCompatImageView

代替android:src --> app:srcCompat

这是示例

<android.support.v7.widget.AppCompatImageView
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:id="@+id/button"
        app:srcCompat="@drawable/ic_more_vert_24dp"
        android:tint="@color/primary" />

不要忘记像@ Sayooj Valsan提到的那样更新你的gradle

// Gradle Plugin 2.0+  
 android {  
   defaultConfig {  
     vectorDrawables.useSupportLibrary = true  
   }  
 }  

 compile 'com.android.support:design:23.4.0'

注意 对于任何一个使用向量的人,永远不要像这样给你的向量引用颜色,android:fillColor="@color/primary"给它的十六进制值。

于 2017-03-15T09:51:47.003 回答
1

转到 MainActivity.java 并在此代码下方
->NavigationView navigationView = findViewById(R.id.nav_view);
添加单行代码 ->navigationView.setItemIconTintList(null);
即我的代码的最后一行

我希望这可以解决您的问题。

public class MainActivity extends AppCompatActivity {

    private AppBarConfiguration mAppBarConfiguration;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Toolbar toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        DrawerLayout drawer = findViewById(R.id.drawer_layout);
        NavigationView navigationView = findViewById(R.id.nav_view);
        navigationView.setItemIconTintList(null);
于 2020-08-16T11:53:11.053 回答
1
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="//Your Color Code//">
  <path
      android:fillColor="@android:color/white"
      android:pathData="M11,9.16V2c-5,0.5 -9,4.79 -9,10s4,9.5 9"/>
</vector>
于 2022-02-01T07:07:11.553 回答
0

如果矢量资源在 CardView 中, card_view:tint="@color/secondary"请在 ImageView 中尝试。注意:替换@color/secondary为您想要的颜色。

于 2021-07-10T08:21:40.447 回答
0

利用

android:drawableTint="@color/primary"

在activity_main.xml

activity_main.xml

于 2021-12-12T08:59:43.940 回答
0

如果要更改项目矢量图标的颜色,可以使用以下命令:

android:iconTint="@color/color"
于 2021-04-08T10:10:07.543 回答
0

对于那些不使用 的人ImageView,以下内容对我来说很简单View(因此行为应该在任何类型的视图上复制)

<View
    android:background="@drawable/ic_reset"
    android:backgroundTint="@color/colorLightText" />
于 2020-02-15T06:17:43.033 回答