OnDestroy上的NullPointer

时间:2016-04-27 16:05:22

标签: android nullpointerexception ondestroy

我遇到了一个问题,只有Crashlytics向我和我的团队展示过,我无法在我的测试设备上重现它。它认为onDestroy()方法抛出了“NullPointerException”。

 @Override
protected void onDestroy() {
    UsersOnRoom.removeAll();
    try {
        audioManager.removeAudioFiles();
    } catch (Exception e) {
        super.onDestroy();
    }
    super.onDestroy();
}

enter image description here

RoomBaseActivity扩展了另一个没有onDestroy()实现的Activity。

我没有想到造成它的原因。

0 个答案:

没有答案