I need to maintain an xml file to save/update/customize the configuration of application , in my project folder. I am saving the file to the 'raw' folder inside 'res'. my data inside this config file is like
`<?xml version="1.0" encoding="UTF-8"?>
<Manual>
<Configs>
<Config name="image" category="jpeg"/>
<Config name="text" category="pdf"/>
</Configs>
</Manual>`
i need to add the entries to the xml file like how we can add to strings.xml file in res folder.
when i am trying to add items like this i am not getting any list of elements like the above popup dialog. How can i add my custom elements and make entries to my custom xml file.
i need type of item 'Config' and there should be two fields to enter the 'name' and 'category'.
when i am trying to add i can add custom attributes directly