0
A
回答
0
使用android:weightSum和android:layout_weight
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:weightSum="4" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="1dp"
android:layout_weight="2"
android:background="#B0B0B0" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="1dp"
android:layout_weight="2"
android:background="#B0B0B0" />
</TableRow>
</TableLayout>
相關問題
- 1. textView調整爲tableLayout中最長的TextView
- 2. TableLayout中的TextView數組
- 3. TableLayout中的TextView高度
- 4. TextView縮小TableLayout
- 5. 左浮動的TextView和TableLayout
- 6. TableLayout中textview和tablerows的佈局 - Android
- 7. Android:如何截斷TableLayout中的TextView?
- 8. 在TableLayout中獲取TextView的位置Android
- 9. TextView Gravity不能在TableLayout中工作
- 10. 在TableLayout中動態調整TextView寬度
- 11. Android ScrollView和TableLayout中的等列行
- 12. 即使使用ArrayList中的值,使用TextView的動態TableLayout也是空的
- 13. 爲什麼行中的第二個textview未顯示在tablelayout中?
- 14. 在TableLayout中的ImageView下居中放置一個TextView
- 15. Textview寬度的「0dip」切斷了TableLayout中的文本
- 16. 將TableLayout中的TextView滾動到屏幕的可見區域
- 17. 清除LinearLayout中的TableLayout將刪除TextView標題
- 18. 在TableLayout中TextView的動態範圍調整
- 19. 如何在android的tablerow或tablelayout中生成動態textview?
- 20. tablelayout不具有相等的寬度
- 21. 如何在一個tableLayout中顯示textview數組
- 22. TextView的getLineSpacingExtra C#/ mono等效
- 23. 等待textview的濃咖啡
- 24. TableLayout用的TextView和EditText上採用了android工作室
- 25. TextView與HTML表格與幾個TextViews的TableLayout
- 26. Android:在固定寬度的TableLayout上動態添加TextView
- 27. TableLayout中的Android ImageButton
- 28. Tablelayout中的Listview android
- 29. TableLayout中的ArrayList IndexOutOfBoundsException
- 30. TableLayout中的Android wordwrap
至於我也明白了,這個問題可能是由於這樣的事實,你已經把機器人:layout_width =「match_parent」,嘗試給它一個值以符合您的需求 – Abx 2013-05-08 08:19:12
hi Artur,welcome對社區來說,你能否詳細描述一下你的問題? – stinepike 2013-05-08 08:19:41
我不認爲它是一個好主意來模仿其他UI元素,就像在這裏的Android設計指南中所說:http://developer.android.com/design/patterns/pure-android.html – sandkasten 2013-05-08 08:20:25