我已经浏览了googlecloudmessaging
代码on the google developer site并找到了代码
String SENDER_ID = "My-Sender-ID";
GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(context);
String registrationId = gcm.register(SENDER_ID);
还将此代码放在异步任务中。仍然,如果我的网络速度慢,而不是因为通过寄存器方法超时而未获得设备ID。
有没有其他方法可以在某些覆盖方法中获取设备ID,例如on registered
?