无法解释来自GCM的消息

时间:2014-07-06 17:33:21

标签: java android notifications google-cloud-messaging classnotfoundexception

我正在尝试了解GCM的工作原理。为此,我复制/粘贴了http://developer.android.com/在“实施GCM客户端”一节中提出的代码。

我现在没有服务器,所以它只是我从eclipse发送的http请求。

以下是请求:

HttpEntity entity = new ByteArrayEntity(contenu.getBytes("UTF-8"));
    HttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost(this.getAdresse());
    post.addHeader("Authorization", "key=AIzaSyANnvuPYJaSIDM7gorqdKh25uvpNA-4rvk");
    post.addHeader("Content-Type", "application/json");
    post.setEntity(entity);

    HttpResponse response = client.execute(post);

其中“contenu”是这个字符串:

{ "data": {
"message":"hello"
  },
  "registration_ids": ["4", "8", "15", "16", "23", "42"]
}

在我的客户端应用程序上,我有这个IntentService(在开发人员站点上找到):

package com.test.testnotification3;

 import com.google.android.gms.gcm.GoogleCloudMessaging;
import com.test.testnotification3.R;

import core.GcmBroadcastReceiver;
import android.app.IntentService;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.SystemClock;
import android.support.v4.app.NotificationCompat;
import android.util.Log;

public class GcmIntentService extends IntentService {
public static final int NOTIFICATION_ID = 1;
private NotificationManager mNotificationManager;
NotificationCompat.Builder builder;
static final String TAG = "GCMDemo";

public GcmIntentService() {
    super("GcmIntentService");
}

@Override
protected void onHandleIntent(Intent intent) {
    Bundle extras = intent.getExtras();
    GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);

    // The getMessageType() intent parameter must be the intent you received
    // in your BroadcastReceiver.
    String messageType = gcm.getMessageType(intent);



    if (!extras.isEmpty()) {  // has effect of unparcelling Bundle
        /*
         * Filter messages based on message type. Since it is likely that GCM
         * will be extended in the future with new message types, just ignore
         * any message types you're not interested in, or that you don't
         * recognize.
         */
        if (GoogleCloudMessaging.
                MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
            sendNotification("Send error: " + extras.toString());
        } else if (GoogleCloudMessaging.
                MESSAGE_TYPE_DELETED.equals(messageType)) {
            sendNotification("Deleted messages on server: " +
                    extras.toString());
            // If it's a regular GCM message, do some work.
        } else if (GoogleCloudMessaging.
                MESSAGE_TYPE_MESSAGE.equals(messageType)) {



            Log.i(TAG, "Completed work @ " + SystemClock.elapsedRealtime());
            // Post notification of received message.
            sendNotification("Received: " + extras.toString());
            Log.i(TAG, "Received: " + extras.toString());
        }
    }
    // Release the wake lock provided by the WakefulBroadcastReceiver.
    GcmBroadcastReceiver.completeWakefulIntent(intent);
}

// Put the message into a notification and post it.
// This is just one simple example of what you might choose to do with
// a GCM message.
public void sendNotification(String msg) {
    mNotificationManager = (NotificationManager)
            this.getSystemService(Context.NOTIFICATION_SERVICE);

    PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
            new Intent(this, MainActivity.class), 0);
    long[] pattern = {0,1000};

    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
    .setSmallIcon(R.drawable.ic_launcher)
    .setContentTitle("Coucou Matthieu")
    .setStyle(new NotificationCompat.BigTextStyle()
    .bigText(msg))
    .setContentText(msg)
    .setVibrate(pattern);

    mBuilder.setContentIntent(contentIntent);
    mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
    }
}

我在Logcat中收到了这条消息:

07-06 19:26:15.627: I/GCMDemo(5095): Received: Bundle[{msg=hello,     android.support.content.wakelockid=1, collapse_key=do_not_collapse, from=472226063168}]

所以我的问题是:如何才能获得“msg”字段?

感谢您的回答!

1 个答案:

答案 0 :(得分:1)

您可以从与Bundle相关联的Intent获取数据。在这种情况下,因为它是一个字符串,您可以调用getString()传递正确的密钥("msg"):

Bundle extras = intent.getExtras();
String msg = extras.getString("msg");

您可以在知道GCM消息是消息类型的分支中执行此操作:

Bundle extras = intent.getExtras();

...

} else if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType)) {
  String msg = extras.getString("msg");
  // Do something with msg
}