RelativeLayout、「textA」、「textB」、および「textC」で3つのTextViewを宣言すると。textC は textB の下に表示されます。しかし、実行すると、textC が不適切な位置 (画面の左上) に表示されます。textC が android:layout_below を textB に使用できるかどうかはわかりません。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent" >
<TextView
android:id="@+id/textA"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:text="This is TextA : " />
<TextView
android:id="@+id/textB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/textA"
android:layout_alignBaseline="@id/textA"
android:text="this is textB" />
<TextView
android:id="@+id/textC"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/textB"
android:text="This is TextC" />
</RelativeLayout>