You can use:
android:drawableLeft="@drawable/ic_launcher"
and you can also put padding between drawable
and textview
by
android:drawablePadding="2dp"
If you always want an icon to appear before the text, it is recommended to use drawableStart
instead of drawableLeft
since many languages are not read left to right.