在集成到我的应用程序时,我遇到Android应用程序内通知集成的问题。广告系列弹出窗口不显示来自广告系列推送的接收方消息。它只显示这样的通知:
我确实参考了facebook的这个指南来整合:https://developers.facebook.com/docs/push-campaigns/android
我的傻瓜:
compile 'com.facebook.android:facebook-android-sdk:4.+'
compile 'com.facebook.android:notifications:1.+'
对我的问题有任何建议吗?我的方式有什么问题,我该如何解决?感谢。
答案 0 :(得分:0)
我认为facebook的指南缺少onNewIntent
方法中的意图数据。我通过以下方式解决了这个问题:
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
if (intent != null) {
NotificationsManager.presentCardFromNotification(this, intent);
}
}