Eclipse新建android项目时候,默认布局方式是RelativeLayout,修改为默认布局方式为LinearLayout

来源:互联网 发布:老七淘宝店 编辑:程序博客网 时间:2024/06/15 12:05

SDK版本有关。2.3默认LinearLayout,4.0默认RelativeLayout。

修改%ANDROID_SDK_HOME%\tools\templates\activities\BlankActivity\root\res\layout下的activity_simple.xml.ftl文件

将RelativeLayout修改为LinearLayout

<LinearLayout 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="${relativePackage}.${activityClass}">    <TextView        android:text="@string/hello_world"        android:layout_width="wrap_content"        android:layout_height="wrap_content" /></LinearLayout>



1 0