我做了一个简单的相对布局,它只包含 3 TextView
,代码如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<!--Why this "age" TextView is not align to parent right?-->
<TextView
android:id="@+id/age"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/name"
android:layout_alignParentRight="true"/>
<TextView
android:id="@+id/gender"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/name"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"/>
</RelativeLayout>
我希望将第二个TextView
(id="age") 定位在右侧,所以我使用layout_alignParentRight="true"
,但是,它总是显示在第一个TextView
(id="name") 之后,为什么?为什么它不去父母的权利(最右边)?