在我的布局中,我有一张桌子占据了所有的屏幕:
<TableLayout
android:layout_with="fill_parent"
androidlayout_height="wrap_content">
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:weightSum="1"
android:layout_weight="0.5">
<TextView
... />
<TextView
... />
<TextView
... />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:weightSum="1"
android:layout_weight="0.5">
<TextView
... />
<TextView
... />
<TextView
... />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:weightSum="1"
android:layout_weight="0.5">
<TextView
... />
<TextView
... />
<TextView
... />
</TableRow>
</TableLayout>
在我的示例中,边框已折叠,但我希望文档的宽度和高度在边框之间有一些边距 我怎么能这样做?