Скажите, что вы хотите включить это:
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
>
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/some_image"
/>
<TextView
android:id="@+id/included_text_view"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
</LinearLayout>
так что в свой код вы вставляете это так:
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical"
>
<include android:id="@+id/header_1" layout="@layout/name_of_layout_xml" />
<include android:id="@+id/header_2" layout="@layout/name_of_layout_xml" />
</LinearLayout>
теперь вы хотите получить доступ к текстовым представлениям во включенных макетах, чтобы установить текст динамически. В своем коде вы просто набираете:
LinearLayout ll = (LinearLayout)findViewById(R.id.header_1);
TextView tv = (TextView)ll.findViewById(R.id.included_text_view);
tv.setText("Header Text 1");
ll = (LinearLayout)findViewById(R.id.header_2);
tv = (TextView)ll.findViewById(R.id.included_text_view);
tv.setText("Header Text 2");
обратите внимание, что вы используете отдельные методы findViewById LinearLayouts, чтобы сузить поиск только до их дочерних элементов.