1. 程式人生 > >Eclipse新建android專案時候,預設佈局方式是RelativeLayout,修改為預設佈局方式為LinearLayout

Eclipse新建android專案時候,預設佈局方式是RelativeLayout,修改為預設佈局方式為LinearLayout

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>