1

我的代码如下所示。我的视图显示得很厚;我希望减少这种情况。

http://imgur.com/KaIpJee

我希望像这张图片一样添加一个分隔符:

http://imgur.com/2ZtcoIB

如何制作小的垂直视图?

  <LinearLayout
     android:layout_width="fill_parent"
 android:layout_height="fill_parent"
android:background="#C0C0C0"
 android:layout_weight="2"
  android:orientation="vertical" >

     <TableLayout
         android:id="@+id/table"
         android:layout_width="fill_parent"




android:layout_height="fill_parent"
android:stretchColumns="*" >

     <TableRow
    android:layout_width="match_parent"
    android:layout_marginTop="5dp"
    android:layout_height="match_parent" >

    <TextView
        android:gravity="left"
           android:layout_marginTop="8dp"
        android:text="Farm a School" />
    <View
android:layout_width="0.1dip"
android:layout_height="fill_parent"
android:background="#000000"
/>


    <TextView
        android:gravity="center"
           android:layout_marginTop="8dp"
        android:text="Take a survey" />
    <View
android:layout_width="0.1dip"
android:layout_height="fill_parent"
android:background="#000000"
  />
     <TextView
        android:gravity="center"
         android:layout_marginTop="8dp"
        android:text="Share this App" />

</TableRow>

</TableLayout>

     </LinearLayout>
4

1 回答 1

0

您可能想要摆脱stretchcolumns* 将意味着每一列都将被拉伸以填满屏幕。导致栏忽略您的宽度设置。

如果您仍然希望文本的宽度共享屏幕空间。利用

 android:stretchColumns="0,2,4"

其中 0,2,4 是包含文本的每个列索引。

于 2013-07-23T06:32:48.360 回答