Here is how you apply the an icon to left to a button.
<Button android:drawableLeft="@android:drawable/ic_menu_delete" />
<Button android:id="@+id/someIdentifier" android:layout_width="match_parent" android:layout_height="wrap_content" android:backgroundTint="@android:color/holo_red_light" android:drawableLeft="@android:drawable/ic_menu_delete" android:text="Delete" />
Last updated 4 years ago
Was this helpful?