Android Studio现在支持21岁以上的矢量资源,并且会在编译时为较低版本生成png。我有一个矢量资源(来自材料图标)我想要更改填充颜色。这适用于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"/>
答案 0 :(得分:264)
不要直接编辑矢量资产。如果您在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" />
答案 1 :(得分:84)
你可以做到。
但你不能使用@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"/>
答案 2 :(得分:58)
正如其他答案中所述,不要直接编辑矢量drawable,而是可以在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);
答案 3 :(得分:31)
要更改矢量图像颜色,您可以直接使用 android:tint =&#34; @ color / colorAccent&#34;
<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));
答案 4 :(得分:15)
目前的工作解决方案是 机器人:填充颜色= “#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和色调可能很快就会起作用。有关更多信息,请参阅此讨论:
https://code.google.com/p/android/issues/detail?id=186431
此外,颜色仍然存在于缓存中,因此删除所有用户的应用程序可能会有所帮助。
答案 5 :(得分:8)
Android工作室现在支持矢量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'
答案 6 :(得分:4)
AppCompat
支持其他答案怀疑android:tint
仅适用于21个以上的设备, AppCompat( v23.2.0及以上)现在提供向后兼容的处理色彩属性。
因此,行动方针是使用AppCompatImageView
和app:srcCompat
(在AppCompat命名空间中)而不是android:src
(Android命名空间)。
以下是一个例子:
<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
答案 7 :(得分:2)
如果您希望支持旧版本的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" />
不要忘记更新您的gradle @ @ strong> Sayooj Valsan 提及
// Gradle Plugin 2.0+ android { defaultConfig { vectorDrawables.useSupportLibrary = true } } compile 'com.android.support:design:23.4.0'
注意对于任何一个使用向量,永远不要给你的向量引用颜色像这样android:fillColor="@color/primary"
给它的十六进制值。
答案 8 :(得分:2)
将此库添加到Gradle以启用旧版Android设备中的颜色矢量绘制。
compile 'com.android.support:palette-v7:26.0.0-alpha1'
并重新同步gradle。我认为它会解决问题。
答案 9 :(得分:1)
如果矢量没有使用fillColor单独设置颜色,那么它们可能被设置为默认的widget参数。
尝试将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>
答案 10 :(得分:0)
对于不使用ImageView
的用户,以下内容对我来说是简单的View
的工作(因此,该行为应在任何视图上复制)
<View
android:background="@drawable/ic_reset"
android:backgroundTint="@color/colorLightText" />
答案 11 :(得分:0)
转到您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);
答案 12 :(得分:0)
如果您想更改项目矢量图标的颜色,您可以使用:
android:iconTint="@color/color"
答案 13 :(得分:0)
如果矢量资源在 CardView 中,请尝试
card_view:tint="@color/secondary"
在 ImageView 中。
注意:将 @color/secondary
替换为您想要的颜色。
答案 14 :(得分:0)
对于我的 ImageButton,我使用了 app:tint="@color/green"
而不是 android:tint