Zmień układ Androida z Względny na Liniowy

Właśnie zacząłem tworzyć aplikacje na Androida, ale mam problem ze zmianąlayout, za każdym razem, gdy tworzę nowy projekt android, daje mi toRelativeLayout zamiastLinearLayout, (cóż, zasadniczo podążam za instrukcją książki, ale nie uczy mnie, jak to zmienić). Zakładam, że musi istnieć ustawienie domyślne, aby móc zmienićRelativelayout doLinearLayout .

<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" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />

</RelativeLayout>

questionAnswers(6)

yourAnswerToTheQuestion