我刚开始创建 android 应用程序,但是我在更改时遇到了问题layout
,每次我创建新的 android 项目时,它都会给我RelativeLayout
而不是LinearLayout
,(好吧,基本上我是按照书上的说明进行操作的,但它并没有教我如何更改它)我认为必须有一个默认设置,以便我可以将其更改Relativelayout
为LinearLayout
.
<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>