私はアンドロイドには比較的新しいので、このレイアウトを行う良い方法があるのだろうかと思っています。私は4つのラベルが左側に縦に積み重ねられ、右側に2つの大きなフォントのラベルが必要です。エミュレータでこれを実行すると、それは私が必要とするものですが、より好ましい方法がありますか?物事のルックスによってAndroid - このレイアウトを行う良い方法はありますか?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/Label1"
android:text="Label 1: "
android:layout_width="200dp"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/Label2"
android:text="Label 2: "
android:layout_below="@id/Label1"
android:layout_width="200dp"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/Label3"
android:text="Label 3: "
android:layout_below="@id/Label2"
android:layout_width="200dp"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/Label4"
android:text="Label 4: "
android:layout_below="@id/Label3"
android:layout_width="200dp"
android:layout_height="wrap_content"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_toRightOf="@id/Label1">
<TextView
android:id="@+id/Label6"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Points"
android:textStyle="bold"
android:textSize="25sp"
android:gravity="center_horizontal"/>
<TextView
android:id="@+id/LabelPoints"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="8.6"
android:textStyle="bold"
android:textSize="25sp"
android:gravity="center_horizontal"/>
</LinearLayout>
</RelativeLayout>
小さなケースではうまくいくでしょう - 彼はLinearLayoutsからテーブル構造を描いているようではありません – ataulm