gpt4 book ai didi

android - 即使应用程序被杀死,如何向 Android 设备发送推送通知?

转载 作者:行者123 更新时间:2023-11-29 23:12:38 25 4
gpt4 key购买 nike

我可以在应用程序处于前台和后台时发送通知。但是当应用程序被杀死时无法发送它,即应用程序不在后台运行。我手机中的其他应用程序即使在后台运行时也能向我发送通知。我正在使用奥利奥版本。

我也用“数据”替换了“通知”,但没有任何区别。我已经在 onMessageReceived 方法上添加了自定义通知,“通知”和“数据”都在前台和后台提供通知。唯一的区别是“数据”也在后台运行 onMessageReceived 方法。但是在两者上,应用程序被杀死时都没有收到通知。我已经在 php 上尝试了以下代码。我做错了什么?

function sendPushNotification($token) {

$url = "https://fcm.googleapis.com/fcm/send";

$serverKey = 'AAAA.....theKey';
$title = "My App";
$body = "hello there!!";
$notification = array('title' =>$title , 'body' => $body, 'sound' => 'default', 'badge' => '1');
$arrayToSend = array('to' => $token, 'notification' => $notification,'priority'=>'high');
$json = json_encode($arrayToSend);
$headers = array();
$headers[] = 'Content-Type: application/json';
$headers[] = 'Authorization: key='. $serverKey;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST,"POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
//Send the request
$response = curl_exec($ch);
//Close request
/* if ($response === FALSE) {
die('FCM Send Error: ' . curl_error($ch));
}*/
curl_close($ch);

// echo "<br>";

return $response;

}

在 onMessageReceived 方法中:

对于“通知”:

public void onMessageReceived(RemoteMessage remoteMessage) {

Log.d("apkflow","onMessageReceived Started");

if (remoteMessage.getNotification() != null) {
title = remoteMessage.getNotification().getTitle();
body = remoteMessage.getNotification().getBody();

Log.d("apkflow","title = " + title);
Log.d("apkflow","body = " + body);
}
}

对于“数据”:

        title = remoteMessage.getData().get("title");
body = remoteMessage.getData().get("body");

更新::我现在得到了解决方案!这是由于移动最近的更新。在vivo,oppo,xiomi等手机中,清除应用程序时,会强制停止该应用程序,从而强制停止所有服务。因此,FCM 服务也停止了,并且在移动设备上没有收到任何通知。因此,为了获得通知,用户必须允许应用程序在后台运行,必须选中“允许在后台”。这解决了问题。如果您还有问题,请发表评论!

最佳答案

Messages with both notification and data payload, when received in the background.

更改通知类型数据

$arrayToSend = array('to' => $token, 'data' => $notification,'priority'=>'high');

请阅读以下文档 https://firebase.google.com/docs/cloud-messaging/android/receive

您必须创建自定义通知。

private void setNotification(RemoteMessage content) {
Log.d(TAG, "custom notification: ");
Intent intent = new Intent(this, NotificationActivity.class);
if (!content.getData().get("url").isEmpty())
intent.putExtra("url", content.getData().get("url"));
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.setAction(Long.toString(System.currentTimeMillis()));
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_ONE_SHOT);


RemoteViews remoteViews = new RemoteViews(getPackageName(),
R.layout.custome_notification);

remoteViews.setTextViewText(R.id.tvTime, currentDate());
remoteViews.setTextViewText(R.id.text, content.getData().get("text"));

Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, getPackageName())
.setSmallIcon(R.drawable.ic_alert)
.setContent(remoteViews)
.setAutoCancel(true)
.setSound(defaultSoundUri);
notificationBuilder.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// To avoid replacing old notification by new one. To set new id for every new Notification following notifications.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel mChannel = new NotificationChannel(getPackageName(), "AppName", importance);
notificationManager.createNotificationChannel(mChannel);
}
int notifyId = (int) System.currentTimeMillis();
notificationManager.notify(notifyId, notificationBuilder.build());
}

关于android - 即使应用程序被杀死,如何向 Android 设备发送推送通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55824424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com