これらの入力を揃えて、右側に 2 つのオートコンプリート ボックスを配置し、右側に小さなボタンを配置したいと考えています。ただし、すべてをカバーする大きなオートコンプリート (2 番目のもの) になってしまいます。
<RelativeLayout
android:layout_alignParentBottom="true"
android:id="@+id/transport_search"
android:background="@color/dark_grey"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<AutoCompleteTextView
android:id="@+id/transport_autoCompleteFrom"
android:layout_width="fill_parent"
android:layout_weight="5"
></AutoCompleteTextView>
<Button
android:id="@+id/transport_switchDirection"
android:layout_toRightOf="@+id/transport_autoCompleteFrom"
android:layout_width="fill_parent"
android:layout_weight="1"
></Button>
<AutoCompleteTextView
android:id="@+id/transport_autoCompleteTo"
android:layout_width="fill_parent"
android:layout_weight="5"
></AutoCompleteTextView>
<Button
android:id="@+id/transport_go"
android:layout_toRightOf="@+id/transport_autoCompleteTo"
android:layout_width="fill_parent"
android:layout_weight="1"
></Button>
</RelativeLayout>
私は何を間違っていますか?