我有一个包含两个TextView的RelativeLayout,第二个应该在第一个下面。第一个TextView的文本在onCreate()中更新,文本包含新行,这使得它更高,但第二个TextView在此之后没有重新定位,导致它们重叠。我该如何解决这个问题?
<RelativeLayout
android:id="@+id/layout_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView_top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/textView_bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/textView_top"/>
</RelativeLayout>
答案 0 :(得分:1)
垂直Linearlayout
可以解决此问题,也可以提高效率。