GcmListenerService.onMessageReceived() 未调用

2022-09-04 02:10:07

我目前正在努力在我的应用中实现 GCM 通知。

我遇到的问题是,我的实现中的方法没有被调用。我从GCM服务器接收数据很好,因为它会自动生成通知(我希望使用该方法将其替换为我自己的通知),但之后我的日志调用都不会打印在日志中。onMessageReceived()GcmListenerServiceonMessageReceived()

从服务器发送到 GCM 服务器的 JSON

{
    "notification" : {
        "title" : "Title",
        "text" : "Message",
        "icon" : "@drawable\/ic_notification",
        "click_action" : "OPEN_MAIN_ACTIVITY"
    },
    "registration_ids":[
        "xxxx", "xxxx", "xxxx", "etc"
    ]
}

AndroidManifest.xml(仅限GCM部分)

<!-- GCM START -->
    <receiver
        android:name="com.google.android.gms.gcm.GcmReceiver"
        android:exported="true"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <category android:name="com.my.package" />
        </intent-filter>
    </receiver>

    <service
        android:name=".Services.ListenerService"
        android:exported="false" >
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
        </intent-filter>
    </service>

    <service
        android:name=".Services.IDListenerService"
        android:exported="false">
        <intent-filter>
            <action android:name="com.google.android.gms.iid.InstanceID"/>
        </intent-filter>
    </service>
    <!-- GCM END -->

GcmListenerService(只是一个快速打印,看看它是否被调用)

public class ListenerService extends GcmListenerService {

    private static final String TAG = "MyGcmListenerService";

    @Override
    public void onMessageReceived(String from, Bundle data) {
        String message = data.getString("title");
        Log.d(TAG, "From: " + from);
        Log.d(TAG, "Message: " + message);
    }
}

不确定请求令牌的方法是否相关,但如果需要,我可以发布它。

如果问题的任何部分不清楚,请告诉我,我不是最擅长解释的人。


答案 1

正如这个Github问题中所解释的那样,这正是你的问题:

https://developers.google.com/cloud-messaging/server#notifications_and_data_messages“GCM 将代表客户端应用显示通知部分。当提供可选数据时,一旦用户单击通知并打开客户端应用程序,它就会发送到客户端应用程序。在 Android 上,可以在用于启动活动的 Intent 中检索数据有效负载。"

因此,在用户点击通知后,数据将以用于启动活动的意向传递。这意味着您需要执行以下操作:

  • 将click_action添加到您从服务器发送的通知密钥中:例如

    send_queue.append({'to': REGISTRATION_ID,
                   'message_id': random_id(),
                   "notification" : {
                      "body" : "Hello from Server! What is going on? Seems to work!!!",
                      "title" : "Hello from Server!",
                      "icon" : "@drawable/ic_school_white_48dp",
                      "sound": "default",
                      "color": "#03A9F4",
                      "click_action": "OPEN_MAIN_ACTIVITY"
                    },
                   'data': { 'message': "Hello" }})
    

有关通知负载,请参阅:https://developers.google.com/cloud-messaging/server-ref#notification-payload-support

  • 在为用户单击通知后要打开的活动添加意向过滤器时,其操作名称与您在服务器端的“click_action”键上使用的操作名称相同,例如:AndroidManifest.xml

    <activity
        android:name=".ui.MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="OPEN_MAIN_ACTIVITY" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    
  • 如果您已将 launchMode 设置为 singleTop,则从 onCreate() 方法 onNewIntent() 上的意图中获取数据,例如:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    
        Intent intent = getIntent();
    
        if (intent.hasExtra(Constants.KEY_MESSAGE_TXT)) {
            String message = intent.getStringExtra(Constants.KEY_MESSAGE_TXT);
            Log.d(TAG, message);
        } 
    }
    

我已经测试了这个,可以确认它有效。(使用 XMPP 连接)


答案 2

如果下游消息 (json) 包含通知,则不会调用 GcmListenerService.onMessageReceived()。


推荐