I am trying to create a main entry interface. I will create a six buttons, and each button will open another activity. For each button, I want it have an big icon with text belo
Use drawableTop
attribute as follows:
<Button
android:id="@+id/btn2"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="This text is below the image"
android:drawableTop="@drawable/ic_my_icon2" />
See the reference android:drawableTop and this simple example on Button documentation with drawableLeft
.