Android is designed in such a way that in order for a method to read a resource, it must have a access to a Context.

Since most of the classes in my application rely on the flexibility of string resources (e.g. changing language without having to change code, etc.), my simple solution was to pass a Context in their constructor, to provide resource access to each such class.

It doesn't make sense for me to only pass a string in the constructor, because the class needs the flexibility of access to a varying number of strings.

So, to simplify things, I only pass Context, and whenever a string resource is needed, I just use Context.getString().

Is this a sign of bad design?

Is there a better way to accomplish this?

link|improve this question

It does feel a bit messy doesn't it... – jondavidjohn Sep 20 '11 at 19:17
@jondavidjohn Every design is a result of some compromise. – uTubeFan Sep 20 '11 at 19:18
2  
I didn't like that Context-passing when I first saw the Android API – Bozho Sep 20 '11 at 19:28
@Bozho It gets worse: a package name is totally static at runtime, yet it requires Context to be read: stackoverflow.com/questions/2002288/… – uTubeFan Sep 20 '11 at 19:35
I disagree, I think the design works for what it was intended to do. The Context can be hard to keep track of sometimes, but it forces a better design from the developer. At least try to be constructive and add some reasoning when you post a comment. – Austyn Mahoney Sep 20 '11 at 21:01
feedback

3 Answers

up vote 4 down vote accepted

This is one of the rare occasions where a globally accessible singleton class may be better than passing the Context to every single class.

I would consider creating a singleton for localization, then use the Context inside of there (unless you need other aspects of the Context all over the place).

Of course, this is a matter of taste and preference. YMMV

link|improve this answer
There is no need to use a Singleton for localization. If you use the Context object, Android does it for you. Why reinvent the wheel with a Singleton that does the same thing? – Austyn Mahoney Sep 20 '11 at 21:02
@Austyn Mahoney Please explain how "Android does it for you"? I tend to accept Eric Farr's answer, by simply initializing a static Context member in Activity.OnCreate() because it simplifies implementation immensely. Do you have a better suggestion? – uTubeFan Sep 20 '11 at 21:57
The Context already has the localization features that the OP needs, why wrap it in a singleton? What do you mean by initializing a static Context member in onCreate(). How are you initializing the member, are you calling getApplicationContext()? – Austyn Mahoney Sep 20 '11 at 22:06
@Austyn Mahoney Yup. 1st, declare public static Context appContext;. 2nd, in onCreate() initialize it: if (appContext == null) appContext = getApplicationContext();. This makes it available to all classes in the project... Any problem with that? – uTubeFan Sep 20 '11 at 22:49
Discussions like this need to be moved to chat per SO policy. Let me know if you need my comment explained. – Austyn Mahoney Sep 21 '11 at 3:52
show 1 more comment
feedback

This is the Service locator pattern - you pass around a service locator (often called "Context") and get the required dependencies from it. It is not an anti-pattern, and is not that much of a bad design, but usually dependency injection is considered superior.

What you are doing is - passing the service locator even further down the object graph. What is advisable is to give each class only the dependencies it needs. So instead of passing Context in the constructor, you pass all the strings it requires. That way you won't be violating the Law of Demeter

link|improve this answer
1  
I dont agree. KISS (keep it simple) is better principle in such cases. – ggurov Sep 21 '11 at 6:47
1  
@Bozho - with Application as singleton you dont pass anything and it is simpler. Actually it is simpler in any case, because if you pass any strings, you should know what strings the other object uses. If you use context, you dont care how many and which strings any object needs. And thats OOP. – ggurov Sep 21 '11 at 8:12
2  
Well, the last thing which I expected to hear here is that data encapsulation is bad and leads to "mocking the whole world". GL with your understanding of OOP. – ggurov Sep 21 '11 at 9:52
1  
My previous comment was about data encapsulation. Strings which one object uses for showing messages to the user are its own stuff and it is bad practise to send them as parameters from someone else just because they are in the resources. From programmers viewpoint these strings belong to the object which uses them, not to its caller. The caller dont need to know anything about such things or soon the programmer will be completely lost in the code. – ggurov Sep 21 '11 at 10:29
1  
Parameters of the constructor or of other methods of the object - there is no difference about knowledge of such strings. – ggurov Sep 21 '11 at 11:06
show 7 more comments
feedback

Sending regularly contexts as parameters and remember them is dangerous, read here: http://developer.android.com/resources/articles/avoiding-memory-leaks.html

Much better is to subclass Application and to make singleton with it (the application object is context too). Such sollution doesn't have significant drawbacks.

link|improve this answer
This is in line with @Eric Farr's suggestion. +1. – uTubeFan Sep 20 '11 at 21:00
feedback

Your Answer

 
or
required, but never shown

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