为什么我的浮动按钮图标是黑色的?

下面是我正在使用的代码。我在用安卓。每个 FAB 都有一个黑色的图标,即使它是白色的。

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>

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>

enter image description here

29378 次浏览

你正在改变 背景的 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);

你正在使用 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"
/>

在可绘制文件夹中单击

ic_cloud_upload

然后将 filColor 更改为

android:fillColor="#FFFFFF" // #FFFFFF is for white color

这将使你的黑色图标变成白色。

来自 AndroidX 的 FloatingActionButton类使用 colorOnSecondary主题属性为其图标着色。

Https://github.com/material-components/material-components-android/blob/master/lib/java/com/google/android/material/floatingactionbutton/res/values/styles.xml#l39

如果按照 MaterialComponents主题定义一直到基本定义,您将看到 colorOnSecondary的默认值是 design_default_color_on_secondary... 而 那个被定义为 #000000

Https://github.com/material-components/material-components-android/blob/master/lib/java/com/google/android/material/color/res/values/colors.xml#l26

您可以通过将 app:tint属性直接添加到 FloatingActionButton 或者重新定义主题中的 @color/colorOnSecondary来解决这个问题。

如果您使用的是 安卓,要改变图标的颜色,您必须使用与 android:tint相对的 app: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"
/>

我有一个图标(矢量)与多种颜色(附加文件) ,但我不能使用 应用程序: tint = “@color/white”,因为我的图标的颜色变成单一的颜色,如白色,我不需要这一点。

所以我修正了我设置 app: tint to null 的问题:

  app:tint="@null"

我的偶像(SVG) :

enter image description here