android:如何实现tablelayout上方的空间(屏幕和tablelayout之间)

时间:2012-05-01 20:17:01

标签: android tablelayout

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

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

<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>
  .................
    ........

1 个答案:

答案 0 :(得分:0)

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