我在android上使用最后的Pushwoosh SDK来接收通知。在活动中我有:PushFragment.init(这个);和活动实现PushEventListenerapp在前台时一切正常。但当它在后台收到通知,当我点击它的应用程序打开,但我需要从它读取一些数据。我尝试了它的方式,因为它是在Pushwoosh"原生Android SDK"的实现,它的工作原理,但在"Android SDK碎片",因为他们已经在他们的文档中描述的广播接收通知在后台不调用。
您还需要处理onNewIntent函数中的push。当你点一下通知,你的应用就启动了。例:
@Override
public void onNewIntent(Intent intent)
{
super.onNewIntent(intent);
//Check if we've got new intent with a push notification
PushFragment.onNewIntent(this, intent);
}