I have a list of static key/value pairs that I need to include in my project like this one:
givenName : First Name
sn : Last Name
mail : Email
... snip ...
Where in an Android project would I put this?
Thanks Eric
|
I have a list of static key/value pairs that I need to include in my project like this one:
Where in an Android project would I put this? Thanks Eric |
|||
|
|
|
You need a XML file saved at
Here is how you can access the values from other xmls:
Or this is how you can access the value from Java code:
Check this Android Dev Guide for full reference on String Resources. |
||||
|
|
|
If you really must use static/globals put them into your custom class which extends Application. Like this:
Declare that you'll be using a custom Application class using your manifest.
Now you can access your application object from any activity using (YourApplication) getApplication(). Please note that this is not the recommended method. The recommended method is to use singleton pattern. (answer taken from one of my question answers) |
|||
|
|
|
Android provides a prebuilt content provider wrapper called
Where
That will return the stored String with key |
|||
|
|