1

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

1 に答える 1

3

基本的に、次のように <include /> タグを使用します。

<include layout="@layout/inner_layout" />

参照: http://developer.android.com/resources/articles/layout-tricks-reuse.html

于 2012-03-31T21:45:47.553 に答える