设置表行(包含文本视图)的布局参数有些困难。
我想添加一些列以获得良好的布局。我是动态的。(代码中)
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ok"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bye"/>
</TableRow>
我希望这两个文本视图变成两列并相应地在屏幕上布局。
最佳答案
你已经写的东西实际上应该已经创建了两个列,问题是它们可能不像你期望的那样位于屏幕上-列将尽可能窄。android布局中的tablelayout标记有几个属性。其中一个是拉伸列-如果给定描述的列将被拉伸,以便填充所有指定的宽度。如果需要均匀拉伸所有列,请使用星号;如果要拉伸覆盖剩余空间的任何特定列,请使用其基于1的索引(可以指定一组索引)。请看这里:
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="0,1" >
<TableRow android:layout_width="fill_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ok"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bye" />
</TableRow>
</TableLayout>
顺便说一下,如果您只需要一行,那么您可以使用linearlayout和orientation=“horizontal”执行相同的操作。如果您有几行,请记住您实际上是在处理表-一列的所有行将正好位于另一行之上,最宽的行将决定列的宽度。