如何設計一個具有兩個按鈕(水平)的按鈕並在這些按鈕下方使用LinearLayout的文本視圖(垂直)的Android應用程序?無法讓它工作。LinearLayout中的項目位置
2
A
回答
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" />
2
最好在這種情況下使用RelativeLayout。您剛剛根據您的觀點相對彼此的項目描述了您的預期結果。使用比你想象的更簡單。
http://developer.android.com/resources/tutorials/views/hello-relativelayout.html
+0
是啊,我以前用過的RelativeLayout,問題是,我想在我的按鈕都使用重量。現在我在一個LinearLayout和一個RelativeLayout中的TextView中有我的按鈕,但它仍然不會像我想要的那樣做。 – Carlj901
相關問題
- 1. 在LinearLayout中定位項目
- 2. LinearLayout中的位置圖標
- 3. LinearLayout中的Android ImageView位置
- 4. LinearLayout安排項目
- 5. 獲取LinearLayout中的視圖位置(Android)
- 6. ListView中的動態LinearLayout項目
- 7. 刪除linearlayout中的所有項目
- 8. 項目庫位置
- 9. TileList項目位置
- 10. Azure項目位置
- 11. LinearLayout不顯示項目
- 12. Heroku的Rails項目位置
- 13. iOS UITabBar項目的位置
- 14. RSS4J項目的位置
- 15. Android ListView項目的位置
- 16. GridView的項目位置
- 17. 在android項目中的twitter4j.properties的位置?
- 18. 如何在LinearLayout中分隔項目?
- 19. 項目存儲在Eclipse中的位置?
- 20. Java項目中config.properties文件的位置
- 21. 在一箇中心的位置項目
- 22. 獲取ListView中項目的位置?
- 23. Symfony 2項目中的特質位置
- 24. Angular2模板項目中的Favicon位置
- 25. 改變列表中的項目位置
- 26. 從ListView中的項目獲取位置
- 27. DTO在項目中的物理位置
- 28. Visual Studio 2015中的項目位置
- 29. 調整QDialog中項目的位置
- 30. Moq dll在項目中的位置?
工作,謝謝。 – Carlj901
我的榮幸。接受回答並關閉問題 –