1. ホーム
  2. xml

Android XML-layoutにおける<merge>と<include>の簡単な使用例

2023-10-12 01:48:37

質問

私が気になっているのは <merge><include> タグをAndroid XML-layoutで使用することができます。2 つのチュートリアルを読みましたが、簡単な使用例はまだ見つかっていません。

誰かがそのような例を提供するか、1 つへのポインタを与えることができれば幸いです。

どのように解決するのですか?

some_activity.xml :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical">

    // some views

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

   // probably more views

</LinearLayout>

ビュー_パート.xml :

<merge xmlns:android="http://schemas.android.com/apk/res/android">

    // the views to be merged

</merge>