Я создал кнопку с текстом и значком:
<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/>
?