In Android, by using Android button drawable we can set text position to be below, top, right or left of the button. According to the image size & view we can also set the image to any side.
Android Button Drawable Example :-
[sourcecode language="xml"]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/icon"
android:text="Drawable Left" />
<Button android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableRight="@drawable/icon"
android:text="Drawable Right" />
<Button android:id="@+id/Button03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/icon"
android:text="Drawable Top" />
<Button android:id="@+id/Button04"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableBottom="@drawable/icon"
android:text="Drawable Bottom" />
</LinearLayout>
[/sourcecode]
The output will look like