在制作新应用而不是相对应用时,默认情况下在Android中创建线性布局

时间:2015-01-29 22:23:46

标签: android android-layout

为什么当我在android中创建新应用程序时,它使用相对布局而不是线性布局.... 当我默认创建新应用程序而不是相对应用时,如何创建线性布局?

enter code here
<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"
tools:context="${relativePackage}.${activityClass}" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

1 个答案:

答案 0 :(得分:0)

确定按照以下步骤操作即可,但我只有99%的确定。
转到res-&gt;布局文件夹并右键单击它,你会得到一个侧边栏,询问你想要创建什么类型的文件
转到 - &gt; 修改文件模板选项。

边栏&GT; Sidebar

您将看到此对话框已打开。 您可以在其他选项卡中看到这两个选项。这些选项是 LayoutResourceFile.xml LayoutResourceFile_vertical.xml

Dialog where you have to make change

LayoutResourceFile.xml LayoutResourceFile_vertical.xml 中将 $ {ROOT_TAG} 更改为LinearLayout,您将始终获得LinearLayout未来的父母。

enter image description here