我正在使用Parse服务向设备发送推送消息。 在iOS上一切正常,但在Android上,如果我发送推送消息,它会向接收者显示我的包名(“com.example.app”)。为什么不显示我的应用程序名称(“示例应用程序”)? 感谢。
答案 0 :(得分:1)
您应该再次检查您的源代码,我按照Parse文档进行操作,你可能发错了标题的内容
Intent intent = new Intent(context, ZHSplashActivity.class);
PendingIntent pIntent = PendingIntent.getActivity(context, (int) System.currentTimeMillis(), intent, 0);
Notification n = new Notification.Builder(context)
.setContentTitle(context.getResources().getString(R.string.app_name))
.setContentText(message)
.setSmallIcon(R.drawable.app_icon)
.setContentIntent(pIntent)
.setAutoCancel(true).build();
NotificationManager notificationManager =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, n);