我正在向我的Android应用添加Urban Airship推送通知。当我发送测试推送时,我的自定义BroadcastReceiver
正在接收通知。这是onReceive()
方法。
public class IntentReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if(intent == null)
return;
String action = intent.getAction();
if (action.equals(PushManager.ACTION_PUSH_RECEIVED)) {
int id = intent.getIntExtra(PushManager.EXTRA_NOTIFICATION_ID, 0); //Breakpoint here
Log.w("my app", "Received push notification. Alert: "
+ intent.getStringExtra(PushManager.EXTRA_ALERT)
+ " [NotificationID="+id+"]");
logPushExtras(intent);
} else if (action.equals(PushManager.ACTION_NOTIFICATION_OPENED)) {
//Other stuff here
}
执行在断点处停止(注释中显示的位置)并记录详细信息。
但通知区域中未显示任何通知。在我使用UA推送通知的其他应用程序中,我认为这就是我所做的一切,但这次似乎没有工作。
我怀疑我在我的清单文件中做错了什么,或者我忘了在某个地方实现一个类。
有什么想法吗?
额外信息
扩展申请:
public class ExtendedApplication extends Application {
public void onCreate(){
AirshipConfigOptions options = AirshipConfigOptions.loadDefaultOptions(this);
UAirship.takeOff(this, options);
PushManager.enablePush();
PushPreferences prefs = PushManager.shared().getPreferences();
Log.e("my app", "My Application onCreate - App APID: " + prefs.getPushId());
PushManager.shared().setIntentReceiver(IntentReceiver.class);
}
}
修改
我尝试过添加
PushManager.shared().setNotificationBuilder(new BasicPushNotificationBuilder());
到this帖子中建议的扩展应用程序。
答案 0 :(得分:0)
我发送了一个测试推送,其中包含来自UA网站的空白“警报”字段。我尝试了一些文本,现在它的工作原理。我不知道为什么,但我认为这不应该是默默无闻的。
故事的道德:不要将警报字段留空。