gpt4 book ai didi

android Notification - 如何不在前台显示

转载 作者:行者123 更新时间:2023-11-29 01:12:37 27 4
gpt4 key购买 nike

嘿,我遇到了一个棘手的问题,需要建议。在收到 FCM 数据有效负载后,我手动构建了一个通知。这是通知在前台和后台创建的方式,因为它是数据负载:

public class MyFirebaseMessagingService extends FirebaseMessagingService {

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {


// Check if message contains a data payload.
if (remoteMessage.getData().size() > 0) {

String msg = remoteMessage.getData().get("message");
sendNotification(msg);
}

private PendingIntent createIntent(String msg) {
Intent intent = new Intent(this, SportsActivity.class);
Bundle b = new Bundle();
b.putString(Constants.KEY_GO_TO_TAB, Constants.KEY_DASHBOARD_HOCKEY_SCORE_TAB);
intent.putExtras(b);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_ONE_SHOT);
return pendingIntent;
}

private void sendNotification( String messageBody) {
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
android.support.v4.app.NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification_icon)
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(messageBody))
.setContentText(messageBody)
.setColor(ContextCompat.getColor(this, R.color.hockey_brand))
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(createIntent(messageBody));

NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

notificationManager.notify(0, notificationBuilder.build());
}

它似乎运行良好。我遇到的问题是我希望当应用程序在前台时不显示通知。没有扫描 Activity 任务就没有办法做到这一点吗?因为这需要许可

我读过 this article但这如何知道你已经从前台转到后台。 android.permission.GET_TASKS 也已弃用,REAL_GET_TASKS 权限也不适用于第三方。我只是想在任何给定时间知道用户是在前台还是在后台,所以我知道我是否应该显示通知。我想知道 firebase 本身是否有东西。当您从 firebase 控制台发送“通知有效负载”时,如果应用程序不在前台,则不会显示在通知面板中,因此应该有一种方法可以执行此操作。

最佳答案

或者,您可以通过实现 Application.ActivityLifecycleCallbacks 选择当您的应用程序处于前台时不显示通知。在您的应用程序中。

然后您可以检查您的应用程序是在前台还是后台。

Source

关于android Notification - 如何不在前台显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41900239/

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