表中的Android 2列

时间:2012-02-12 02:22:07

标签: android xml

如何为精确2列的Android应用程序创建一个表,以便在整个宽度中填充2列,并按比例分开2个边?通常在我的情况下看起来像这样:http://s7.directupload.net/file/d/2798/bingju4q_png.htm。 (我正在开发一个简单的BMI计算器)但我希望双方都处于中心位置。

1 个答案:

答案 0 :(得分:0)

<TableLayout

android:layout_height="wrap_content"
android:layout_width="fill_parent"
>
<TableRow android:layout_height="wrap_content" android:layout_width="wrap_content">
<TextView android:text="Welcome" android:layout_height="wrap_content" android:layout_width="wrap_content" />

<TextView android:text="Welcome" android:layout_height="wrap_content" android:layout_width="wrap_content" />
</TableRow>

</TableLayout>