I am buiding an Android app, and I have a problem to get resource from string.xml. I need to have an URL in String.xml that will be used several times through the app. I tried Resources.getText("my_url"), but this does not work. Eclipse complains when I use this. Do you think this is the best way to do ?
|
What you probably want is:
The What happens with your XML resources is that each is given a unique integer ID and this is added to the automatically generated |
|||||||||||||||
|
|
Do you ever refer this page: http://developer.android.com/intl/de/guide/topics/resources/available-resources.html ? If you want to retrieve the String represented by a resource ID, you can call the Context.getString() method. Or, you have to post Eclipse's complains. |
|||
|
|