2012-03-31 250 views
1

给定一个XML layout(称之为“内部”布局),如何引用另一个自定义XML布局的内部布局(称之为“外部”布局)?这是可能单独使用XML,还是唯一的编程解决方案?如何从另一个自定义XML布局引用自定义XML布局?

内部布局:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:padding="6dip" 
    > 
    <ImageView 
    android:id="@+id/productImage" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentRight="true" 
    android:layout_marginLeft="6dip" 
    /> 
    <TextView 
    android:id="@+id/productName" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_toLeftOf="@id/productImage" 
    android:textAppearance="?android:attr/textAppearanceLarge" 
    /> 
</RelativeLayout> 

外布局:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    > 
    <!-- Embed inner XML layout here --> 
    <Button 
    android:id="@+id/productButtonAddToShoppingList" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_below="<!-- refer to inner layout -->" 
    android:layout_marginTop="2dip" 
    android:text="add to shopping list" 
    /> 
</RelativeLayout> 

回答