間にスペースを入れて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で適切に分割しましたが、どうすればその余分なスペースを追加できますか?