我在 RelativeLayout 中有两个 Textview,如下所示:
<RelativeLayout>
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
(*) android:layout_above="@+id/message"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true" />
<ScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1">
<TextView
android:id="@+id/message"
android:layout_width="302dp"
android:layout_height="wrap_content"
android:layout_above="@+id/editText1"/>
</ScrollView>
我希望Textview id'd“消息”是可滚动的。所以我在 ScrollView 中添加了它,但是我放了一个星号 (android:layout_above) 我得到了错误:@+id/message is not a brother in the same RelativeLayout
我该如何解决?任何帮助表示赞赏