Android: Is it more efficient to use a text file or an XML file to store static data
I have some reference data in a text file (~5MB) that I want to use with might android application. The file is of the format: 1|a|This is line 1a 1|b|This is line 1b 2|a|This is line 2a 2|b|This is line 2b 2|c|This is line 2c What I want to know is the most efficient way (less memory, fast, size etc.) to use this file within my appl...