5

Context.getApplicationContext()在 Android 应用程序中,保留对应用程序整个生命周期返回的应用程序上下文的引用是否安全?

Context ac = context.getApplicationContext();
// keep the ac reference throughout the app lifetime
4

1 回答 1

5

是的。在应用程序被系统杀死之前,应用程序上下文不会改变。当应用程序被杀死时,您的变量会被清除。另一方面,坚持活动上下文是不安全的。

于 2013-02-14T09:43:04.930 回答