次の画像は、最終結果として到達しようとしているものです。
これまでの私のコードは、ボタンを中央に揃えるのにうまく機能します。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center">
<ImageButton
android:id="@+id/button_A"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/my_border"
android:layout_marginTop="25dp"
android:src="@drawable/categories" />
<ImageButton
android:id="@+id/button_B"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/button_A"
android:layout_marginLeft="34dp"
android:layout_marginTop="25dp"
android:background="@drawable/my_border"
android:src="@drawable/shopping_cart" />
</RelativeLayout>
次に、「button_B」の後、「TEXT HERE IN CENTER」というメッセージを成功させようとしました。
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<TextView
android:id="@+id/txt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="TEXT HERE IN CENTER"/>
</RelativeLayout>
何か案は?ありがとう。
編集:解決しました。http://pastebin.com/9DwaQrPq