我目前正致力于在我的应用中实施GCM通知。
我遇到的问题是我的onMessageReceived()
实施中的GcmListenerService
方法未被调用。我很好地从GCM服务器接收数据,因为它会自动生成通知(我希望使用onMessageReceived()
方法将其替换为我自己的通知),但之后我的日志调用都没有打印在日志中。 / p>
从服务器发送到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);
}
}
不确定请求令牌的方法是否相关,但我可以在需要时发布。
如果问题的任何部分不清楚,请告诉我,我不是最好的解释。
答案 0 :(得分:12)
正如this 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
的通知有效负载参考在AndroidManifest.xml
中,在用户点击通知后,在您要打开的活动上添加一个意图过滤器,使用您在服务器端的“click_action”键上使用的相同操作名称,例如:
<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>
如果您已设置 onNewIntent(),请从 onCreate()方法或上获取意图数据launchMode to singleTop,用于单击通知时要启动的活动,例如:
@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连接)
答案 1 :(得分:4)
如果下游消息(json)包含通知,则不会调用GcmListenerService.onMessageReceived()。
答案 2 :(得分:3)
要在onMessageReceived中接收消息,您需要定义顶级&#34;数据&#34;消息对象中的字段。通知字段自动处理并生成通知,onMessageReceived不会传递通知字段中的任何数据。
更新您的消息对象以包含数据字段,并应调用onMessageReceived:
{ "notification" : { "title" : "Title", "text" : "Message", "icon" : "@drawable\/ic_notification", "click_action" : "OPEN_MAIN_ACTIVITY" }, "data": { "some_key": "some_value" }, "registration_ids":[ "xxxx", "xxxx", "xxxx", "etc" ] }
答案 3 :(得分:0)
onMessageReceived
只调用“仅数据”推送按摩。