Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm an Android beginner. I am trying use getResources method in non-activity class. How do I get the reference to the "resources" object so that I can access the xml file stored under resources folder.

Example:

XmlPullParser xpp = getResources().getXml(R.xml.samplexml);
share|improve this question

3 Answers

up vote 12 down vote accepted

You will have to pass a context object to it. Either this if you have a reference to the class in an activty, or getApplicationContext()

public class MyActivity extends Activity {
    public void onCreate(Bundle savedInstanceState) {
        RegularClass regularClass = new RegularClass(this);
    }
}

Then you can use it it the constructor (or set it to an instance variable):

context.getResources().getXml(R.xml.samplexml);

Where the constructor accepts Context as a parameter

share|improve this answer

Do you have access to the Context? Or most likely you can get access to it by getApplicationContext()

share|improve this answer

this can be done by using

context.getResources().getXml(R.xml.samplexml);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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