0

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

4

3 に答える 3

0

これを試してみてください:

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

<TextView
    android:id="@+id/textView1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
   android:layout_marginLeft="5dp"
    android:background="@drawable/cuadrogris"
    android:textSize="8sp" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
   android:layout_marginLeft="5dp"
    android:background="@drawable/cuadrogris"
    android:textSize="8sp" />

<TextView
    android:id="@+id/textView3"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:layout_marginLeft="5dp"
     android:background="@drawable/cuadrogris"
    android:textSize="8sp" />
于 2013-03-26T09:56:04.617 に答える
0

各テキストビューに以下の行を追加します

android:layout_margin="10dp"

また

あなたの要件に従って

android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
于 2013-03-26T11:16:24.297 に答える
0

あなたは素晴らしいことをしています

これを各TextViewに追加するだけです

android:layout_margin="20dp" 

結果を確認してください。休憩必要に応じて修正できます

ここに画像の説明を入力してください

于 2013-03-26T11:37:53.013 に答える