2011-10-27 10 views
1

リニアレイアウトを使用してスピナーとボタンを一列に整列する方法は?水平に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> 

答えて

0

ちょうど横と向きを設定この

<LinearLayout     
    android:orientation="horizontal" ///set orientation like this 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent"   
    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> 
2
<LinearLayout 
      android:layout_height="wrap_content" 
      android:layout_width="fill_parent" 
      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> 

変更の向き:ここでは、コードですか?何も言及していないか、デフォルトは水平です。

0

を試してみてください。

関連する問題