Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to read up an xml file before I do much of anything else like setText on widgets, so how can I do that without an activity object to call getResources() on?

share|improve this question

2 Answers

up vote 44 down vote accepted
  1. Create a subclass of Application, for instance public class App extends Application {
  2. Set the android:name attribute of your <application> tag in the AndroidManifest.xml to point to your new class, e.g. android:name=".App"
  3. In the onCreate() method of your app instance, save your context (e.g. this) to a static field named app and create a static method that returns this field, e.g. getApp():

This is how it should look:

public class App extends Application{

    private static Context mContext;

    @Override
    public void onCreate() {
        super.onCreate();
        mContext = this;
    }

    public static Context getContext(){
        return mContext;
    }
}

Now you can use: App.getContext() whenever you want to get a context, and then getResources() (or App.getContext().getResources()).

share|improve this answer
neat trick, thanks. ok, so no standard api then? – Calgacus Dec 9 '10 at 18:03
That's standard, it's not a trick XD – Cristian Dec 9 '10 at 18:13
I agree that this is an ugly hack. One shall never assign dynamic values to the static object – Bostone Feb 22 '12 at 23:46
@Bostone - They are not dynamic values. We are talking about setting static constants through resources. On the contrary, I think, the problem of this way is that we can't use these constants as static for the whole application class, even if they ARE static for the whole application class. But 99% of problems could be solved this way. +1 to Cristian! – Gangnus Nov 25 '12 at 20:02
Instance of the application is not a dynamic value, how so @Gangnus? In any case - I found the hard way that relying on statics in Android is nothing but headache. "Now you see it, now you don't" – Bostone Nov 26 '12 at 16:28
show 3 more comments

Use

Resources.getSystem().getString(android.R.string.cancel)

You can use them everywhere in your application, even in static constants declarations! But for system resources only!

share|improve this answer
1  
That's cool. I usually do not get offended... just when someone uses uppercase :P Just kidding. Well, your standard works for some resources like strings and drawables... however, as the documentation says, it does not work good for things like orientation measures, etc. Also, and most important, this won't allow you to get a global context which is sometimes useful for things that may need it (raising a Toast for instance, getting a SharedPreference instance, open a database, as my Latin language teacher says: et cetera). – Cristian Jan 7 '12 at 2:51
You can't even win peace in all the world by it :-). But it helps to solve the problem set by the question here. I am not saying it solves every task, only that it solves its task almost on every place in the application. I searched for such solution for 10 months - all the time I use Android. And now I found it. – Gangnus Jan 7 '12 at 21:02
Yeah. Got the point. I really liked your solution. Thanks for your research :) – Cristian Jan 7 '12 at 23:30
You have to be careful here. Don't try to find your app resources using this method. Read the fine print: Return a global shared Resources object that provides access to only system resources (no application resources), and is not configured for the current screen (can not use dimension units, does not change based on orientation, etc). – Bostone Feb 22 '12 at 23:45
@DroidIn.net Citation: " But for system resources only!". I know /*sigh/* – Gangnus Feb 23 '12 at 10:11

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.