Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to split main.xml to other xmls?

Tags:

android

I have main.xml and is a very large file, i want to split some of the components(some layouts) to other xml so that i can link from main.xml itself. is this possible from android ?

like image 687
ramsbh Avatar asked Jan 25 '11 09:01

ramsbh


People also ask

How do I split multiple XML files?

Split large XML file in Windows (Method #1) First, click the “Add XML File(s)” button to provide the input path of the file to split, or easily drag and drop your files. Then select the tag by which the new file will be split. Next, choose after what period of tags to split into a new file.

Can we import XML file into another XML file?

To import multiple XML files that use the same namespace but different XML schemas, you can use the From XML Data Import command.

How do I split XML in Dell Boomi?

After the map, use a data process shape to combine the flat files, and then a 2nd entry to split the flat file. The split will be flat file, split on profile, the Profile is the flat file, and Link Element would be stockid. Then do another map to make the flat file to original xml profile.


1 Answers

You can use this

<include  layout="@layout/commonlayout" android:id="@+id/id" />

Refer this import xml into another xml

like image 171
Labeeb Panampullan Avatar answered Oct 27 '22 07:10

Labeeb Panampullan