我正在开发一个Android应用程序,需要接收推送通知。
收到推送通知,但没有消息,只是当我点击启动应用程序的通知中的启动器图标,但没有收到任何消息。
我在这里只处理接收通知部分,通知是由服务器上的其他人发送的,他正在使用VB.net,无法检查他的代码。但我可以发布我的。 我的onMessage:
protected void onMessage(Context context, Intent intent) {
Log.i(TAG, "Received message");
String message = intent.getExtras().getString("price");
generateNotification(context, message);
}
我的generateNotification
private static void generateNotification(Context context, String message) {
int icon = R.drawable.ic_launcher;
long when = System.currentTimeMillis();
NotificationManager notificationManager = (NotificationManager)
context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);
String title = context.getString(R.string.app_name);
Intent notificationIntent = new Intent(context, CoursesMainActivity.class);
// set intent so it does not start a new activity
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent =
PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
// Play default notification sound
notification.defaults |= Notification.DEFAULT_SOUND;
// Vibrate if vibrate is enabled
notification.defaults |= Notification.DEFAULT_VIBRATE;
notificationManager.notify(0, notification);
}
请帮助解决这个问题,如果有人想要VB.net代码发送消息,我也可以提供。
谢谢, ASMI
答案 0 :(得分:0)
我解决了它,因为另一个人(发送推送通知)并未将其作为“价格”发送,而是作为“消息”发送