android - Pushwoosh 泄漏我的 Activity

标签 android android-activity memory-management memory-leaks pushwoosh

我在我的应用程序中使用 Pushwoosh 来接收推送通知。我正在使用最新版本的 Pushwoosh 库 3.1.14。

我有这样的屏幕结构。

Login Activity -> Main Activity with multiple tabs.

所以我在 MainActivity 中实现我的 pushwoosh 相关逻辑。我想在注销时取消注册推送,然后返回登录 Activity 。

我的代码如下。我已经过滤掉了与 Pushwoosh 无关的所有其他部分。坦率地说,这段代码与 Pushwoosh 文档中的代码完全相似 here .唯一的区别在于 onLogout() 方法,我尝试从 pushwoosh 中注销并返回到 LoginActivity。

TabbarActivity.java

@Override
protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);

   //Pushwoosh Registration
   registerReceivers();
   PushManager pushManager = PushManager.getInstance(this);
   pushManager.setNotificationFactory(new PushNotificationFactory());
   try {
       pushManager.onStartup(this);
   } catch(Exception e) {}

   //Register for push!
   pushManager.registerForPushNotifications();
   checkMessage(getIntent());
} 


@Override 
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);    
    setIntent(intent);    
    checkMessage(intent);
}

@Override
protected void onResume() {    
    super.onResume();    
    registerReceivers();
}

@Override
protected void onPause() {    
    super.onPause();    
    unregisterReceivers();
}

BroadcastReceiver mBroadcastReceiver = new BaseRegistrationReceiver() {    
   @Override    
   public void onRegisterActionReceive(Context context, Intent intent) {        
       checkMessage(intent);    
   }
};

private BroadcastReceiver mReceiver = new BasePushMessageReceiver() {
   @Override    protected void onMessageReceive(Intent intent) {
     //JSON_DATA_KEY contains JSON payload of push notification.    
   }
};

public void registerReceivers() {
  IntentFilter intentFilter = new IntentFilter(
    getPackageName() + ".action.PUSH_MESSAGE_RECEIVE");
  registerReceiver(mReceiver, intentFilter, 
    getPackageName() +".permission.C2D_MESSAGE", null);    
  registerReceiver(mBroadcastReceiver, new IntentFilter(
    getPackageName() + "." + PushManager.REGISTER_BROAD_CAST_ACTION));
}

public void unregisterReceivers() {
  try {
    unregisterReceiver(mReceiver);    
  } catch (Exception e) {
    e.printStackTrace();    
  }

  try {        
    unregisterReceiver(mBroadcastReceiver);
  } catch (Exception e) {
    e.printStackTrace();   
  }
}

private void checkMessage(Intent intent) {
  if (null != intent) {
    if (intent.hasExtra(PushManager.REGISTER_EVENT)) {
       uploadPushTokenToServer(PushManager.getPushToken(this));
    }
    resetIntentValues();    
  }
}

private void resetIntentValues() {
  Intent mainAppIntent = getIntent();
  if (mainAppIntent.hasExtra(PushManager.PUSH_RECEIVE_EVENT)) {
    mainAppIntent.removeExtra(PushManager.PUSH_RECEIVE_EVENT);    
  } else if (mainAppIntent.hasExtra(PushManager.REGISTER_EVENT)) {
    mainAppIntent.removeExtra(PushManager.REGISTER_EVENT);
  } else if (mainAppIntent.hasExtra(PushManager.UNREGISTER_EVENT)) {
    mainAppIntent.removeExtra(PushManager.UNREGISTER_EVENT);
  } else if (mainAppIntent.hasExtra(PushManager.REGISTER_ERROR_EVENT)) {
    mainAppIntent.removeExtra(PushManager.REGISTER_ERROR_EVENT);
  } else if (mainAppIntent.hasExtra(PushManager.UNREGISTER_ERROR_EVENT)) {
    mainAppIntent.removeExtra(PushManager.UNREGISTER_ERROR_EVENT);
  }
  setIntent(mainAppIntent);
}

//Finally on logout
private void onLogout() {
   //other cleanup

   //pushwoosh
   PushManager.getInstance(this).unregisterForPushNotifications();

   //goback to login activity
}

我从服务器收到推送没有任何问题。我面临的唯一问题是在我注销并返回到 LoginActivity 后,TabbarActivity 仍保留在内存中,而内存又会保留许多其他 fragment 和 View 。我尝试使用 MAT 进行调试,结果如下。

Class Name                                                                      | Ref. Objects | Shallow Heap | Ref. Shallow Heap | Retained Heap
--------------------------------------------------------------------------------------------------------------------------------------------------
com.pushwoosh.internal.request.RequestManager$1 @ 0x12f89ce0  Thread-1737 Thread|            1 |           88 |               360 |           536
'- val$context in.myproject.activities.TabbarActivity         @ 0x12d8ac40      |            1 |          360 |               360 |        18,520
--------------------------------------------------------------------------------------------------------------------------------------------------

我还使用 LeakCanary 工具进行了相同的交叉检查,这也表明 Pushwoosh 正在保留我的 Activity 。

所以我的问题是,如何清理 pushwoosh 以避免我的 Activity 被泄露?

最佳答案

您引用的文档(通过简要查看)给出了一个示例,这些示例并不总是将 api 实现为具有其他 Activity 的功能齐全的应用程序的最佳方式。我知道通过使用 getInstance,您正在尝试使用单例,但怀疑这没有得到很好的管理。

我会控制在您的应用运行期间使用的 PushManager 实例。

问题可能是从作用域创建 PushManager 的多个实例以及在类中创建多个 pushManager 实例,并且可能在程序的生命周期内。这会导致泄漏。

我会让 pushManager 成为一个类变量,而不是使用 PushManager.getInstance 两次,并考虑创建一个 PushManager 的静态实例以在应用程序运行期间使用,就像在整个应用程序中使用单个数据库实例一样。

在类(class)层面:

PushManager pushManager;

并在oncreate中初始化

pushManager = PushManager.getInstance(this);


//Finally on logout
private void onLogout() {
    //other cleanup

    //pushwoosh
    // Here the first instance is left dangling.
    // PushManager.getInstance(this).unregisterForPushNotifications();

    pushManager..unregisterForPushNotifications();

    //goback to login activity
}

这样您就为 pushmanager 的一个实例清理了资源。

要使用应用范围内的静态 PushManager:

static PushManager pushManager;

初始化为:

pushManager = new PushManager(this.getApplicationContext());

When is a Singleton not a Singleton?

关于android - Pushwoosh 泄漏我的 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33755410/

相关文章:

Android Activity 变暗、失去焦点和卡住 - 没有错误消息并且在首次运行后工作

c++ - 用于频繁分配和释放的基于轻树的数据结构的内存分配器

java - Parcelable:在 fragment 旋转时解码错误时未找到类

android - 如何删除使用 Uri 创建的文件?

Android:如何使 ListView 中的项目打开以进行比较。 Activity/Intent

android - 我正在尝试从服务启动 Activity ,但应用程序正在强制关闭。我正在从广播接收器启动服务

c++ - 为什么我的程序在恰好循环 8192 个元素时很慢?

ios - ARC 如何在循环中工作?

android - 如何在 Android Root 上使用我的应用程序名称创建文件夹

java - 语言环境:语言名称到国家/语言代码