保持对Android应用程序上下文的引用是否安全?

时间:2013-02-14 09:41:04

标签: android android-context lifecycle

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

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

1 个答案:

答案 0 :(得分:3)

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