2

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 が互いの上に配置されるのではなく、互いの下に配置されるようにするにはどうすればよいですか?

ありがとうマット

4

1 に答える 1

6
<TextView
    android:layout_width="wrap_content"
    android:id= "@+id/textview1" 
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />
<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id= "@+id/textview2" 
        android:layout_below="@+id/textview1"  
        android:text="@string/matttest" />

以下のレイアウトを使用して、ビューを相互に相対的に配置します

于 2013-06-30T11:45:50.843 に答える