リニアレイアウトを使用してスピナーとボタンを一列に整列する方法は?水平にAndroid:同じ行にあるスピナーとボタンを整列させますか?
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical"
android:paddingTop="10dp">
<Spinner
android:id="@+id/spinner_delay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:prompt="@string/time_delay"/>
<Button
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Send SMS"
android:layout_marginTop="5dp"
android:layout_marginLeft="230dp"
android:layout_marginRight="5dp"/>
</LinearLayout>