I am working on a android framework. I implemented an system server which works fine, i.e., a sample application can communicate with the service. Now i want my server to be able to read and write data into a file or sqlite like database. I am pretty new to android framework development so i am not sure how this works. Any help is greatly appreciated.
|
|
To handle database in Android (to store some apps/service data) you should use ContentProviders class. There is a great tutorial on developer.android.com pages: Content Providers http://developer.android.com/guide/topics/providers/content-providers.html and its subchapters:
There is also Note Pad sample application in android SDK samples (on harddrive /samples/android-/ - http://developer.android.com/tools/samples/index.html). Please take a look at class NotePadProvider (com.example.android.notepad) in this sample app. BR Paweł Rutkowski PS. I think that this question was not answered for so long because title is misleading - it should more about storing user/app configuration in Android or about using sql database in Android. |
|||
|
|
Using the standard android sqlite database in a service is identical to using it from an activity. The android documentation and the samples show you how to do that. |
|||
|
|