当我在 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>