使用GCM在设备上接收消息

时间:2013-07-26 12:26:16

标签: android notifications google-cloud-messaging

其实我正在处理Android应用的通知。 我的两个主要信息来源是此tutorial和Android开发人员网站。

让我快速描述一下我的应用:

  • 在我的应用中,我使用符合web services请求的POST HTTP(WS)。
  • 对于通知,我使用GCM系统。
  • 我的应用使用上面的“POST HTTP”请求系统在我的服务器上注册。
  • 实际上我的服务器与教程中的服务器完全相同(这意味着在数据库中注册一个帐户,其中包含两个参数注册ID 设备,并使用GCM向设备发送消息

实际上所有这些步骤都有效:

  1. 我的应用已成功获取注册ID(gcm.register(SENDER_ID);工作)
  2. 我的应用已在我的服务器上成功注册
  3. 当我尝试从设备发送消息时,我的服务器收到一条成功的消息

    {"multicast_id" : 6276079906208554309 , "success" : 1 , "failure" : 0 , "canonical_ids" : 0 , "results" : [{"message_id" : "0:1374826298092960%978fee92f9fd7ecd"}]}

  4. 问题:

    • 我的设备上未收到任何内容

    我做了什么:

    我尝试做两个版本的应用程序:

    • 首先,我使用本教程的部分代码创建了一个应用程序,但是使用package com.google.android.gms.gcm.GoogleCloudMessaging而不是com.google.android.gcm已弃用(并在教程中使用),但我无法接收消息,所以我尝试第二个版本......
    • 这次我拿了整个教程,只是更改服务器上的注册功能以使用我的,但就像第一个应用程序一样,我的设备上什么也没收到。 (我这样做是为了试着理解接待的工作方式,但它对我没有帮助,现在我会忘记这种方式)

    我在哪里需要你的帮助:

    我需要一些/更多解释如何接收我的服务器发送的消息。

    • 我的主要活动使用Android开发者网站上描述的代码。
    • 我使用android开发者网站上的代码创建一个广播类。
    • 我没有创建任何IntentService或服务,也许这是我的错误,但根据我读到的内容我理解我不需要一个,就像之前使用已弃用的GCMBaseIntentService

    总结:

    • 我真的很感激一些帮助,以了解我需要在设备上接收消息,因为实际上我不知道在哪里可以找到我需要能够使用该系统的信息。

    感谢。

    PS:如果您需要我的部分代码,请问我。

    修改 我的manifest

        <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.androidhive.pushnotifications2"
        android:versionCode="1"
        android:versionName="1.0" >
    
        <uses-sdk
            android:minSdkVersion="8"
            android:targetSdkVersion="17" />
    
        <uses-permission android:name="android.permission.INTERNET" />
        <uses-permission android:name="android.permission.GET_ACCOUNTS" />
        <uses-permission android:name="android.permission.WAKE_LOCK" />
    
        <permission
            android:name="com.androidhive.pushnotifications2.permission.C2D_MESSAGE"
            android:protectionLevel="signature" />
    
        <uses-permission android:name="com.androidhive.pushnotifications2.permission.C2D_MESSAGE" />
        <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
        <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
        <uses-permission android:name="android.permission.VIBRATE" />
    
        <!-- Main activity. -->
        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name" >
    
            <!-- Register Activity -->
            <activity
                android:name="com.androidhive.pushnotifications2.cop.RegisterActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
    
            <!-- Main Activity -->
            <activity
                android:name="com.androidhive.pushnotifications2.MainActivity"
                android:configChanges="orientation|keyboardHidden"
                android:label="@string/app_name" >
            </activity>
    
    
            <receiver
                android:name=".GcmBroadcastReceiver"
    
                android:permission="com.google.android.c2dm.permission.SEND" >
                <intent-filter>
    
                    <!-- Receives the actual messages. -->
                    <action android:name="com.google.android.c2dm.intent.RECEIVE" />
                    <!-- Receives the registration id. -->
                    <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
    
                    <category android:name="com.androidhive.pushnotifications2" />
                </intent-filter>
            </receiver>         
        </application>
    
    </manifest>
    

    我的GcmBroadcastReceiver(来自教程)

    WakeLocker也与教程相同。

    package com.androidhive.pushnotifications2;
    
    import android.app.Activity;
    import android.app.NotificationManager;
    import android.app.PendingIntent;
    import android.content.BroadcastReceiver;
    import android.content.Context;
    import android.content.Intent;
    import android.support.v4.app.NotificationCompat;
    
    import com.google.android.gms.gcm.GoogleCloudMessaging;
    
    public class GcmBroadcastReceiver extends BroadcastReceiver {
        static final String TAG = "GCMDemo";
        public static final int NOTIFICATION_ID = 1;
        private NotificationManager mNotificationManager;
        NotificationCompat.Builder builder;
        Context ctx;
        @Override
        public void onReceive(Context context, Intent intent) {
            ///
            WakeLocker.acquire(context);
            ///
            System.out.println("TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT");
            GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(context);
            ctx = context;
            String messageType = gcm.getMessageType(intent);
            if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
                sendNotification("Send error: " + intent.getExtras().toString());
            } else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETED.equals(messageType)) {
                sendNotification("Deleted messages on server: " +
                        intent.getExtras().toString());
            } else {
                sendNotification("Received: " + intent.getExtras().toString());
            }
            WakeLocker.release();
            setResultCode(Activity.RESULT_OK);
        }
    
        // Put the GCM message into a notification and post it.
        private void sendNotification(String msg) {
            mNotificationManager = (NotificationManager)
                    ctx.getSystemService(Context.NOTIFICATION_SERVICE);
    
            PendingIntent contentIntent = PendingIntent.getActivity(ctx, 0,
                    new Intent(ctx, MainActivity.class), 0);
    
            NotificationCompat.Builder mBuilder =
                    new NotificationCompat.Builder(ctx)
            .setSmallIcon(R.drawable.common_signin_btn_icon_focus_light)
            .setContentTitle("GCM Notification")
            .setStyle(new NotificationCompat.BigTextStyle()
            .bigText(msg))
            .setContentText(msg);
    
            mBuilder.setContentIntent(contentIntent);
            mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
        }
    }
    

0 个答案:

没有答案