tags:

views:

30

answers:

1

can anybody tell how to create a xml file and write in android and where to put the file for aceess again is it possible to put into raw folder ?

A: 

can anybody tell how to create a xml file and write in android

Use Java I/O.

where to put the file for aceess again

Use getFilesDir() for a place in the on-board flash that is available to your application.

is it possible to put into raw folder ?

No, sorry, that cannot be modified at runtime.

CommonsWare