I know that usage of static variables on Android is quite risky, especially if you reference them to activities. However, if I have a class that extends Application (let's call this class "App"), is it safe to reference to the instance of this class?
If so, is it also safe for any other class to have any kind of reference to the application context? I mean, can there be a memory leak if I have a reference to the application context in any kind of class?
The purpose is that no matter in which scope I am in, I can always get a reference to the application context. I think it's safe, since if the system closes the application, the static variable is also gone till the next time the application starts again, which will initialize the static variable again.
Also, not that it matters much, but if I use multiple processes, will I get totally different references to App class on each process?
As an example of code, here's what I'm thinking about:
public class App extends Application
{
private static Context _appContext;
@Override
public void onCreate()
{
super.onCreate();
_appContext = this;
}
public static Context getAppContext()
{
return _appContext;
}
}
Presently, yes, it appears to be safe, though I would not have
getAppContext()
returnContext
, but instead returnApp
orApplication
.That being said, the fact that the core Android team did not set it up this way in the first place suggests that perhaps there may be hidden issues of which we are unaware, or that in the future this approach may introduce problems.
As the acronym of the saying goes, YMMV. :-)
EDIT
I have no idea what you mean by "safe" here.
If you use multiple processes, you should be slapped with a trout. But, yes, you should get distinct
App
instances per process.It should be safe. Also the following note from the API docs could be relevant to you:
It's safe to do this in
Application#onCreate()
because theApplication
is created before any activity. If your app gets killed in the background, theApplication
instance will be recreated and your global will be set before any activity runs.It's important to note that you should never set global variables from an activity. If you do, your app could fail in the following way:
NullPointerException
This is the warning when you create a
Context context;
in android-studio :Interesting comment popped up from Studio when I was tidying up nasty static contexts:
"This is a leak (and also breaks Instant Run)."
So with the launch of Instant Run, we have the case where Android developers are not planning on saving static variables. Whilst instant run is not (yet) on my agenda, it is useful to know that there is a specific example where it is not only bad practice, but the use case where it is wrong is identified.