我已经创建了GCM Intent服务,并且设备已成功注册。我也收到REGISTRATION Intent,但是没有调用OnMessage或OnRegistered方法。

我看到下面的日志。

07-23 06:24:23.542: V/GCMBroadcastReceiver(1168): onReceive: com.google.android.c2dm.intent.REGISTRATION
07-23 06:24:23.542: V/GCMBroadcastReceiver(1168): GCM IntentService class: com.app.demo.myApp.GCMIntentService
07-23 06:24:23.581: V/GCMBaseIntentService(1168): Acquiring wakelock

以下是OnMessage的代码。

有人可以帮助我解决为何未调用OnRegistered或OnMessage的问题。
 public class GCMIntentService extends GCMBaseIntentService {



    @Override
    protected void onMessage(Context arg0, Intent arg1) {
        // TODO Auto-generated method stub
        Toast.makeText(getApplicationContext(), "registered", Toast.LENGTH_LONG).show();
        String device_id = GCMRegistrar.getRegistrationId(this);
        GSLogger.Log("mess_received", device_id);
    }

    @Override
    protected void onRegistered(Context context, String arg1) {
        Toast.makeText(context, "registered", Toast.LENGTH_LONG).show();
        String device_id = GCMRegistrar.getRegistrationId(this);
        GSLogger.Log("registered", device_id);

    }

}

list 代码:
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.READ_CALENDAR" />
    <uses-configuration android:name="android.permission.GET_ACCOUNTS"/>
    <uses-permission android:name="com.google.android.c2dm.permission.C2D_MESSAGE"/>


    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
     <permission android:name="com.app.demo.myApp.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />
    <uses-permission android:name="com.app.demo.myApp.permission.C2D_MESSAGE" />

list 中的接收方代码:
<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.app.demo.myApp" />
          </intent-filter>
        </receiver>
        <service android:name="com.app.demo.myApp.GCMIntentService" />

我的包裹的照片:

最佳答案

问题是

<service android:name="com.app.demo.myApp.GCMIntentService" />

只要给
<service android:name=".GCMIntentService" />

并将您的GCMIntentService Java文件放在 list 中包名称所指定的文件夹中。

例如,如果您已将com.app.demo.myApp声明为应用程序包名称

将您的GCMIntentService放在相同的文件夹结构中。

关于android - 没有调用GCM Intent服务OnRegistered,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17803089/

10-12 04:35