繁体   English   中英

在Android上杀死应用时收到系统托盘通知

[英]Receive system tray notification when app killed on Android

当我的应用程序被杀死时,我无法收到我从应用服务器设置的通知。 以前我的gradle是这样的:

implementation "com.google.firebase:firebase-messaging:17.0.0"
implementation "com.google.firebase:firebase-invites:16.0.0"

通过这个gradle配置,我能够在前台,后台接收通知,即使应用程序被刷过

我更新了我的forebase-messanging所以这是我的新gradle with firebase-messanging:

implementation "com.google.firebase:firebase-messaging:18.0.0"

这是我更新后的当前服务类

public class MyService extends FirebaseMessagingService
{
public static final String ACTION = "action";
public static final String EXTRA_DATA = "extra_data";
public static final String MESSAGE = "message";
private RemoteMessage.Notification mNotification;

@Override
public void onNewToken(String refreshedToken) {
    super.onNewToken(refreshedToken);
    LOGE(TAG, "Refreshed token: " + refreshedToken);

}

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    super.onMessageReceived(remoteMessage);
    String from = message.getFrom();
    mNotification = message.getNotification();
    Map<String, String> data = message.getData();
    LOGE(TAG, "Received FCM message from : " + from + " data : " + data);
}
}

使用这个新版本,当刷新应用程序时,它仍然可以在系统托盘中接收通知吗? 如果是这样,任何想法?

您是否在此清单中定义了服务类?:

<service
    android:name=".MyService"
    android:exported="false">
    <intent-filter>
        <action android:name="com.google.firebase.MESSAGING_EVENT" />
    </intent-filter>
</service>

如果问题在此之后仍然存在 添加以下方法并从您的onMessageReceived调用它应解决任何类型的问题。

    private void sendNotification(String messageBody) {
        Intent intent = new Intent(this, MainActivity.class); // Put your own launcher Activity
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
                PendingIntent.FLAG_ONE_SHOT);

        String channelId = getString(R.string.default_notification_channel_id);
        Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder =
                new NotificationCompat.Builder(this, channelId)
                        .setSmallIcon(R.drawable.ic_stat_ic_notification)
                        .setContentTitle(getString(R.string.fcm_message))
                        .setContentText(messageBody)
                        .setAutoCancel(true)
                        .setSound(defaultSoundUri)
                        .setContentIntent(pendingIntent);

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

        // Since android Oreo notification channel is needed.
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel channel = new NotificationChannel(channelId,
                    "Channel human readable title",
                    NotificationManager.IMPORTANCE_DEFAULT);
            notificationManager.createNotificationChannel(channel);
        }

        notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}

上述方法取自Firebase存储库

我在某些手机上也遇到过同样的情况,例如Asus Zenfone。 当我从当前任务/应用列表中滑动应用时,不会传递firebase消息,所有后台服务/作业都会停止/永不触发。 但对于像三星这样的其他制造商来说,刷这个应用程序仍然可以接收这些消息。

我认为除了“将你的应用程序列入白名单”之外别无他法 - 用户必须手动完成,忘记Zenfone中的内容。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM