if (!share_pref) {
try {
GCMRegistrar.checkDevice(CategoryPage.this);
GCMRegistrar.checkManifest(CategoryPage.this);
} catch (Exception e) {
e.printStackTrace();
}
final String regId = GCMRegistrar.getRegistrationId(this);
if (!regId.equals("")) {
Log.i("GCM_STATUS", "Already Registered with Gcm");
} else {
GCMRegistrar.register(CategoryPage.this, Constants1.SENDER_ID);
}
Log.e("GCM", "ID----->"+regId);
我想在警报框中显示我的设备 ID。我已经为此编写了代码但它不起作用。在 LOG(控制台)中我正在获取设备 ID。请帮助我如何在警报框中显示设备 regId id,以便我可以在 UI 上看到我的设备 ID