Android開発(Android Studioを使用)を学び始めたばかりですが、いくつか問題があります。activity_main.xml の TextView は、互いの下ではなく、互いの上に配置されます。
デフォルトの TextView をコピーして、テキストを別の文字列に変更しました。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".Main">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/matttest" />
</RelativeLayout>
TextView が互いの上に配置されるのではなく、互いの下に配置されるようにするにはどうすればよいですか?
ありがとうマット