修改Android开发新建工程默认相对布局为线性布局

sdk2.3之前工程默认是线性布局,到4.0之后默认布局变成相对布局,很多之前开发的人用着不习惯,故对4.0以后的默认改回原来的线性布局。

“G:\”android-sdk-windows\tools\templates\activities\BlankActivity\root\res\layout \activity_simple.xml.ftl

G:因每个人放的位置不同自己去找到SDK的位置即可,故加了引号,表示可能每个人不一样的地方。

我改了这个文件. 之后创建的  BlankActivity  就都是LinearLayout的了. 

我用的是EditPlus修改的,为了方便我添加了id属性。

    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width=<#if buildApi lt 8 >"fill_parent"<#else>"fill_parent"
    android:layout_height=<#if buildApi lt 8 >"fill_parent"<#else>"fill_parent" >
 
            android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"/>
 

默认的布局是相对布局如下做备份:

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width=<#if buildApi lt 8 >"fill_parent"<#else>"match_parent"
    android:layout_height=<#if buildApi lt 8 >"fill_parent"<#else>"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=".${activityClass}">


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



你可能感兴趣的:(Android)