I have the following /res/values/uris.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bladder">blahblah</string>
</resources>

I am accessing it in code:

private String bladderUrl= getString(R.string.bladder);

But it is returning null. I'm not sure why?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

My guess you placed bladderUrl smth like this:

public class YourActivity extends Activity {
    private String bladderUrl = getString(R.string.bladder);

    @Override
    public void onCreate(Bundle savedInstanceState) {

...

However you need to do smth like this:

public class YourActivity extends Activity {
    private String bladderUrl;

    @Override
    public void onCreate(Bundle savedInstanceState) {

        bladderUrl = getString(R.string.bladder);
...
link|improve this answer
+1 from me I forgot to mention that in my answer to original question – Konstantin Burov Nov 11 '10 at 18:02
+1 thats the correct usage. – Octavian Damiean Nov 11 '10 at 18:03
feedback

First, make sure these values are in the file strings.xml.

Also, you can't access the strings from the constructor. The application context is not yet initialized. You should do it in onCreate().

Emmanuel

link|improve this answer
I can't access my private String from onCreate() it is out of scope... – Sheehan Alam Nov 11 '10 at 18:05
@Sheehan Alam then most likely you have problems with app design. – Konstantin Burov Nov 11 '10 at 18:09
I'm not sure I understand. This string is in an activity but the onCreate() is in the subclass or something? Just move your string to the subclass or make it protected. You just can't access the application context from your constructor so you'll have to do it later. – Emmanuel Nov 11 '10 at 18:20
feedback

First of all to clear that up. You don't have to have all your strings in strings.xml. Period.

Emmanuels answer is partially right. You have to get the string inside your onCreate() method when the context is initialized. His answer is only partially correct since he also mentioned that you have to have the strings inside the strings.xml which is not true.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.