Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm curious about the <merge> and <include> tags in Android XML-layouts. I've read two tutorials, but haven't yet found a simple example usage.

Would be happy if someone could provide such an example or give a pointer to one.

share|improve this question
1  
Please take a look at the official Android documentation: Re-using Layouts with <include/> – JJD Feb 13 at 16:08

3 Answers

up vote 51 down vote accepted

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>

view_part.xml:

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

    // the views to be merged

</merge>
share|improve this answer
so the merge-thingy is referred to by its file-name... no id-attribute in the merge-file? – aioobe Apr 28 '10 at 20:09
11  
@aioobe right. <include> basically means 'take that file and paste it's contents here'. – yanchenko Apr 28 '10 at 20:28
hi, actually i am facing a grave problem here. I am using preferences and specifying layouts to use inside the preferences. Inside the layout i am using include-merger functionality (so that i have a place holder which will use switch or checkbox based on version). The problem is in my preferenceacvitity's onPostCreate method when i am trying to find the view (i.e. checkbox/switch), i am always getting the view as null ! Can you please help here ? stackoverflow.com/questions/15708599/… – Adithya Mar 30 at 15:53

id doesn't paste code otherwise relative layout parameters would have worked. It does some different processing

share|improve this answer

There's a simple Android XML layout <include /> HOWTO that's also explaining a common pitfall over at http://www.coboltforge.com/2012/05/tech-stuff-layout/. That may help...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.