Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 Android 开发一个应用程序,我需要获取存储在设备上的 GCM RegID(注册已经完成)并发送到我的 sql 服务器。如何获取存储的 Reg ID?
Tks
GCMRegistrar.getRegistrationId(this);来自您Activity或其他人的电话Context。如果它返回空字符串,则您没有注册 ID。如果它返回一个非空字符串,那就是注册 ID。
GCMRegistrar.getRegistrationId(this);
Activity
Context
请注意,这也会GCMIntentService在其onRegistered()回调方法中传递给您。
GCMIntentService
onRegistered()