每当我使用Android手机上的“主页”按钮离开我的应用程序并使用启动器图标再次输入应用程序时,我的应用程序的初始活动就会重复。如果我重复这个例程五次,我的初始活动有五个实例。
我已经通过Eclipse中的堆转储对此进行了监视,确保在每次转储之前进行垃圾回收。这是我在直方图视图中询问 Merge Shortes Path to GC Root以及我的activity类的所有引用时获得的视图:
Class Name | Ref. Objects | Shallow Heap | Ref. Shallow Heap | Retained Heap
-------------------------------------------------------------------------------------------------------------------------------------------------
| | | |
android.view.ViewRootImpl$WindowInputEventReceiver @ 0x41408a80 Native Stack | 1 | 32 | 224 | 184
class android.view.inputmethod.InputMethodManager @ 0x40d93e78 System Class | 1 | 88 | 224 | 616
'- mInstance android.view.inputmethod.InputMethodManager @ 0x413422e0 | 1 | 112 | 224 | 296
'- mServedView, mNextServedView android.widget.ListView @ 0x41331100 | 1 | 1 088 | 224 | 124 096
'- mContext nilsnett.chinese.activities.GameOverviewActivity @ 0x44eeecd8| 1 | 224 | 224 | 1 000
android.view.ViewRootImpl$WindowInputEventReceiver @ 0x41af4a60 Native Stack | 1 | 32 | 224 | 184
android.view.ViewRootImpl$WindowInputEventReceiver @ 0x412cf928 Native Stack | 1 | 32 | 224 | 184
android.view.ViewRootImpl$WindowInputEventReceiver @ 0x44cd3090 Native Stack | 1 | 32 | 224 | 184
'- this$0 android.view.ViewRootImpl @ 0x44cd1f20 | 1 | 464 | 224 | 2 168
'- mView com.android.internal.policy.impl.PhoneWindow$DecorView @ 0x44cbef00| 1 | 536 | 224 | 1 336
'- mContext nilsnett.chinese.activities.GameOverviewActivity @ 0x44cbdee8| 1 | 224 | 224 | 1 000
Total: 5 entries | 5 | 216 | 1 120 |
-------------------------------------------------------------------------------------------------------------------------------------------------
所以似乎有一个属性(或类?)WindowInputEventReceiver
保持对我的活动GameOverviewActivity
的引用。为什么,以及如何阻止它?
答案 0 :(得分:-2)
我发现原因是WindowInputEventReceiver
实现了finalize方法,它引起了一个引用。我在System.gc
中致电onDestroy
来解决此问题。