Only the button displays, but I want to see the text above the button
<RelativeLayout
android:id="@+id/big_button_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<ImageButton
android:id="@+id/big_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/girrafffe"/>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:text="Hello"
android:layout_above="@id/big_button"/>
</RelativeLayout>
android:drawableBottom="@drawable/image"will place the image of the button on the bottom thus allowing the text to be placed on the top.