我想对齐TextViews
放置在两个不同RelativeLayouts
. 以下是我正在使用的代码:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="right">
<TextView
android:id="@+id/tv_city_a"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="City"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_city_b"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/tv_city"
android:background="@drawable/txt_field_white"/>
</RelativeLayout>
我想对齐 with 的基线,tv_city_a
但tv_city_b
上面的代码不起作用。
注意:由于设计要求,我需要将TextView
's 放在两个不同RelativeLayout
的 's 中。我不能把它们合二为一。
编辑以下是我得到的输出: