0

我无法上传图片以更好地帮助我。

如何在屏幕和表格布局之间的表格布局顶部(即)获得空间。下面的表格开始时表格和屏幕之间没有任何空格。

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/my_shape_file"
android:layout_alignParentRight="true" 
android:layout_marginTop="10dip"
android:stretchColumns="3">

 <TableRow>

        <TextView
            android:layout_column="1"
            android:gravity="left"            
            android:background="@drawable/todayhr"/>


        <TextView
            android:layout_column="2"
            android:text="one"
            android:gravity="center"
            android:textColor="#000000" />
    </TableRow>



  <View
    android:layout_height="1dip"
    android:layout_width="wrap_content"
    android:background="#ABABAB" />

  <tablerow>
  .................
    ........
4

1 回答 1

0

视图的边距被其容器用来定位视图本身。只需将 包含TableLayout在 LinearLayout 中,后者将正确添加边距。

于 2012-05-01T20:22:44.670 回答