gpt4 book ai didi

android - 将颜色设置为 Android 中 TextView 内的 drawableTop 图像

转载 作者:数据小太阳 更新时间:2023-10-29 02:10:09 27 4
gpt4 key购买 nike

我有一个带有 drawableTop 的 textView,但图像是黑色的,我想将颜色更改为白色。有没有办法在不创建单独的 imageView 和 TextView 的情况下做到这一点。

下面是供引用的xml。

<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="48dp"
android:layout_height="48dp"
android:gravity="center_horizontal|bottom"
android:drawableTop="@drawable/ic_add_room"
android:text="More"/>

最佳答案

使用色调 android:drawableTint改变颜色。示例:

<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="48dp"
android:drawableTint="#fff"
android:layout_height="48dp"
android:gravity="center_horizontal|bottom"
android:drawableTop="@drawable/ic_add_room"
android:text="More"/>

关于android - 将颜色设置为 Android 中 TextView 内的 drawableTop 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35745374/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com