以下是我正在使用的代码。我正在使用androidx。每个FAB都有一个黑色图标,即使它是白色也是如此。
mylayout.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<include layout="@layout/content_geral" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="24dp"
app:backgroundTint="@color/colorPrimary"
app:srcCompat="@drawable/ic_cloud_upload"
tools:ignore="VectorDrawableCompat" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
style.xml
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
答案 0 :(得分:19)
如果您使用的是 AndroidX ,则要更改图标的颜色,您必须使用app:tint
而不是android:tint
<com.google.android.material.floatingactionbutton.FloatingActionButton
style="@style/Widget.MaterialComponents.FloatingActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
app:backgroundTint="@color/colorPrimary"
app:tint="@color/white"
app:srcCompat="@drawable/ic_add"
/>
答案 1 :(得分:9)
我有一个具有多种颜色(附加文件)的图标(矢量),但是我不能使用 app:tint =“ @ color / white” ,因为我的图标颜色变成了单色,例如白色和我不需要这个。
所以我解决了将app:tint设置为null的问题:
app:tint="@null"
我的图标(SVG):
答案 2 :(得分:2)
AndroidX的FloatingActionButton
类使用colorOnSecondary
主题属性为其图标着色。
如果您将MaterialComponents
主题定义遵循到基本定义中,则会看到colorOnSecondary
的默认值为design_default_color_on_secondary
...,并且那是被定义为#000000
。
您可以通过将app:tint
属性直接添加到FloatingActionButton或通过将主题中的@color/colorOnSecondary
重新定义为您想要的内容来解决此问题。
答案 3 :(得分:0)
您要更改FAB的背景颜色,而不是图标颜色。 要更改图标的颜色,请使用:
android:tint
更新
您还可以通过编程方式更改颜色:
Drawable myFabSrc = getResources().getDrawable(android.R.drawable.ic_input_add);
Drawable willBeWhite = myFabSrc.getConstantState().newDrawable();
willBeWhite.mutate().setColorFilter(Color.WHITE, PorterDuff.Mode.MULTIPLY);
myFabName.setImageDrawable(willBeWhite);
答案 4 :(得分:0)
您正在使用“ android:backgroundTint”此属性设置FAB的背景颜色,但要更改FAB图标的颜色,请使用“ android:tint”属性,如下所示:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:tint="@android:color/white"
android:src="@android:drawable/ic_input_add"
/>
答案 5 :(得分:0)
在您的可绘制文件夹中,单击
ic_cloud_upload
然后将fillColor更改为
android:fillColor="#FFFFFF" // #FFFFFF is for white color
这会将您的黑色图标变成白色。