【发布时间】:2019-01-23 13:26:29
【问题描述】:
我创建了带有文本和图标的按钮:
<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/>标签中设置?
【问题讨论】:
标签: android button colors icons