Как изменить цвет значков в кнопке? - PullRequest
0 голосов
/ 23 января 2019

Я создал кнопку с текстом и значком:

<Button
        android:id="@+id/btnLinkToProfile"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:text="@string/profile"
        android:gravity="left|center_vertical"
        android:textAllCaps="false"
        android:textColor="@color/text"
        android:textSize="15dp"
        android:drawableLeft="@drawable/profile"/>

И я хочу установить цвет значка, как это сделать в теге <Button/> или его можно установить только в теге <ImageView/>?

Ответы [ 2 ]

0 голосов
/ 23 января 2019

Вы можете использовать Android: drawableTint = "# 000000" для рисования, как

<Button
    android:id="@+id/btnLinkToProfile"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/white"
    android:text="@string/profile"
    android:gravity="left|center_vertical"
    android:textAllCaps="false"
    android:textColor="@color/text"
    android:textSize="15dp" 
    android:drawableLeft="@drawable/profile"
    android:drawableTint="#000000"
    android:drawableTintMode="src_in"/>

Спасибо

0 голосов
/ 23 января 2019

Вы можете использовать ImageButton и установить цвет с помощью

android:tint="@color/myColour"
...