Android アプリの上部に 3 つのボタンとロゴ、左端に 1 つのボタン、ロゴを中央に配置、右側に 2 つのボタンを持つバーを作成しようとしています。私の問題は、右側の 2 つのボタンが重なっているということです。両方を右側に配置して重ねないようにするにはどうすればよいですか?
ビューの XML 構造は次のとおりです。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="42px"
android:orientation="horizontal"
android:background="@drawable/header_background">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button android:id="@+id/button_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:background="@drawable/menu_button"
android:layout_gravity="left"
android:layout_alignParentLeft="true" />
<ImageView
android:id="@+id/imageViewLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/logo_white"
android:layout_centerInParent="true"/>
<Button android:id="@+id/button_camera"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:background="@drawable/camera_button"
android:layout_gravity="right"
android:layout_alignParentRight="true" />
<Button android:id="@+id/button_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:background="@drawable/two_up_button"
android:layout_gravity="right"
android:layout_alignParentRight="true" />
</RelativeLayout>
</LinearLayout>
どんなアドバイスも素晴らしいでしょう!ありがとう。