私はついにアプリがGCM(Google Cloud Messaging)を使用できるようになりました。しかし、私には問題があります。登録が完了した直後に、registrationIdを取得したいと思います。registerIdが空であることを除いて、アプリを再起動しない限り、値が返されます。
基本的に私が欲しいのは、登録が完了した直後にregisterIdを取得することです。
これは私が使用しているコードです:
checkNotNull(SENDER_ID, "SENDER_ID");
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
TextView mDisplay = (TextView) findViewById(R.id.display);
String regId = "";
if (!GCMRegistrar.isRegistered(this))
{
mDisplay.setText("registering");
GCMRegistrar.register(this, SENDER_ID);
regId = GCMRegistrar.getRegistrationId(this);
String url = "localhost/Google-Cloud-Messaging-Server-Test/registration.php?regId=" + regId;
Log.i(TAG, "registration url: " + url);
HttpRequest httprequest = new HttpRequest(url);
}
else
{
regId = GCMRegistrar.getRegistrationId(this);
mDisplay.setText(regId);
Log.v(TAG, "Already registered");
GCMRegistrar.unregister(this);
}
問題は、コードがこのポイントに達した後、次のことです。
regId = GCMRegistrar.getRegistrationId(this);
String url = "localhost/Google-Cloud-Messaging-Server-Test/registration.php?regId=" + regId;
regIdは空です。登録が成功するため、値が必要です。私は何か間違ったことをしていますか?実際に登録プロセスを実行しているときに、registrationIdを取得しようとする可能性はありますか?
よろしくお願いします、
マーク
編集:manifest.xmlコンテンツ
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codeglue.google.cloud.messaging.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="15" />
<permission
android:name="com.codeglue.google.cloud.messaging.test.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.codeglue.google.cloud.messaging.test.permission.C2D_MESSAGE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.codeglue.google.cloud.messaging.test" />
</intent-filter>
</receiver>
<service android:name=".GCMIntentService" />
</application>
</manifest>