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?
Contextcan 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