我需要创建 3 个块,它们之间有空格。
http://i47.tinypic.com/huos40.png
我几乎完成了,但我尝试了很多属性,我不知道我还能检查什么。
这是我当前的代码:
<LinearLayout
android:id="@+id/ll_numbers"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignLeft="@+id/tv_numbers"
android:layout_below="@+id/tv_numbers"
android:layout_marginTop="5dip"
android:layout_marginRight="10dip"
android:orientation="horizontal"
android:weightSum="3" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/cuadrogris"
android:textSize="8sp" />
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/cuadrogris"
android:textSize="8sp" />
<TextView
android:id="@+id/textView3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/cuadrogris"
android:textSize="8sp" />
</LinearLayout>
如您所见,我已将宽度屏幕正确地拆分为 3,但是如何添加额外的空间?