ForegroundTint"覆盖" backgroundTint按钮?

时间:2017-11-17 11:55:39

标签: android user-interface button tint

我正在开发Android应用程序,我需要一个背景和前景的按钮,这些都是一些图标。

我想将backgroundTint和foregroundTint设置为不同的颜色,因为在编写颜色选择器时需要它。

问题是当我设置foregroundTint时:

  1. foregroundTintMode = multiply - 背景色调没问题,但前景图标没有改变它的颜色
  2. foregroundTintMode!= multiply - 前景色调没问题,但背景图标正在将其颜色更改为foregroundTint,而不是backgroundTint
  3. 我已尝试使用foregroundTintMode和backgroundTintMode的所有组合,但没有得到任何结果。

    这是我的测试文件:

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout 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"
        tools:context="euroicc.testfb.MainActivity"
        android:background="@color/colorPrimary">
    
        <Button
            android:id="@+id/button"
            android:layout_width="200dp"
            android:layout_height="200dp"
            android:background="@drawable/icon_background"
            android:backgroundTint="@android:color/holo_blue_dark"
            android:foreground="@drawable/icon_settings"
            android:foregroundTint="@android:color/white"
            tools:layout_editor_absoluteX="105dp"
            tools:layout_editor_absoluteY="141dp" />
    
    </RelativeLayout>
    

    注意:我最初使用的是API lvl 17,但已更改为21.我希望此应用能够支持尽可能多的设备。

1 个答案:

答案 0 :(得分:1)

不确定为什么使用普通Buttonforeground,请改用ImageButton

<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/icon_settings"
    android:tint="@android:color/red"
    android:background="@drawable/icon_background"
    android:backgroundTint="@android:color/black"
    />