我正在开发android应用程序,我需要一个同时具有背景和前景的按钮,这是一些图标。
我想将backgroundTint和foregroundTint设置为不同的颜色,因为当我为颜色编写选择器时需要它。
问题是当我设置前景时Tint:
- foregroundTintMode=multiply-背景色调可以,但前景图标不会改变其颜色
- foregroundTintMode=多重-前景色调可以,但背景图标正在将其颜色更改为前景色调,而不是背景色调
我已经尝试了前台TintMode和后台TintMode的所有组合,但没有结果。
这是我的测试文件:
<?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 17级,但后来改为21级。我希望这个应用程序能支持尽可能多的设备。
不确定为什么要使用普通的Button
和foreground
,请使用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"
/>