次のように、RelativeLayout に 2 つの 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 の「メッセージ」をスクロール可能にしたい。そのため、ScrollView 内に追加しましたが、星 (android:layout_above) を配置した場所にエラーが発生しました: @+id/message is not a sibling in the same RelativeLayout
これを修正するにはどうすればよいですか? どんな助けでも大歓迎です