I am making an android app and trying to figure out the best way to store the data. The data is fully static and will basically be several items with a name, logo and phone number for each.
The data will then be shown using a listview. So my question, what is the best way to store the data? Xml, json, SQLite or something else?
I want something that makes it easy to write down the data using Eclipse (like XML) but also easy to retrieve the data without the need to use a bunch of extra code.