[android-developers] best way to storage data on android

2011-03-22 Thread Igor Nesralla Ribeiro
Hi, I'm a newbie on Android dev. But I want to know what the best way to storage data on androidfile or SQLite because...i want to save a list of restaurants with street address, Lat and long, and pictures...and update it over internet Anybody has any reference to send me !? Best

Re: [android-developers] best way to storage data on android

2011-03-22 Thread Tobiah
On 03/22/2011 10:16 AM, Igor Nesralla Ribeiro wrote: Hi, I'm a newbie on Android dev. But I want to know what the best way to storage data on androidfile or SQLite because...i want to save a list of restaurants with street address, Lat and long, and pictures...and update it over

Re: [android-developers] best way to storage data on android

2011-03-22 Thread A. Elk
Content providers don't provide a database, or anything else for that matter. They are an Android component that offers the following features: - cross-application access, so that one data store can serve multiple applications. The framework handles data transfers and procedure calls