android,如何从另一个.xml文件加载linearlayout?

时间:2011-07-20 15:36:52

标签: android android-layout

假设我有一个.xml文件,其菜单看起来像这样。

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/linearLayout1" android:orientation="vertical">
            <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/linearLayout2">
            <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/imageView1" android:src="@drawable/menubtm0"></ImageView>
        </LinearLayout>
        <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/linearLayout3">
            <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/menubtm1" android:id="@+id/btm_fav" android:clickable="true"></ImageView>
            <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/menubtm2" android:id="@+id/btm_search" android:clickable="true"></ImageView>
            <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/menubtm3" android:id="@+id/btm_browse" android:clickable="true"></ImageView>
            <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/menubtm4" android:id="@+id/btm_settings" android:clickable="true"></ImageView>
        </LinearLayout>
    </LinearLayout>

将它加载到另一个xml文件中的最佳方法是什么? 例如进入某些FormLayout或什么?

谢谢!

1 个答案:

答案 0 :(得分:3)

您可能正在寻找Include代码。