2012-03-31 10 views
1

Gegeben eine XML layout (nennen Sie es das "innere" Layout), wie beziehen Sie sich auf dieses innere Layout von einem anderen benutzerdefinierten XML-Layout (nennen Sie es das "äußere" Layout)? Ist dies mit XML allein möglich oder sind die einzigen Lösungen programmatisch?Wie beziehen Sie sich auf ein benutzerdefiniertes XML-Layout aus einem anderen benutzerdefinierten XML-Layout?

Innenaufteilung:

<?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> 

Outer Layout:

<?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> 

Antwort