2011-11-19 104 views
2

如何設計一個具有兩個按鈕(水平)的按鈕並在這些按鈕下方使用LinearLayout的文本視圖(垂直)的Android應用程序?無法讓它工作。LinearLayout中的項目位置

回答

3

<LinearLayout android:layout_width="fill_parent" 
    android:layout_height="wrap_content" android:orientation="horizontal"> 
    <Button android:layout_width="wrap_content" 
     android:layout_height="wrap_content" /> 
    <Button android:layout_width="wrap_content" 
     android:layout_height="wrap_content" /> 
</LinearLayout> 
<TextView android:layout_width="fill_parent" 
    android:layout_height="wrap_content" /> 

+0

工作,謝謝。 – Carlj901

+0

我的榮幸。接受回答並關閉問題 –

2

最好在這種情況下使用RelativeLayout。您剛剛根據您的觀點相對彼此的項目描述了您的預期結果。使用比你想象的更簡單。

http://developer.android.com/resources/tutorials/views/hello-relativelayout.html

+0

是啊,我以前用過的RelativeLayout,問題是,我想在我的按鈕都使用重量。現在我在一個LinearLayout和一個RelativeLayout中的TextView中有我的按鈕,但它仍然不會像我想要的那樣做。 – Carlj901