栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

Android编程实现google消息通知功能示例

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Android编程实现google消息通知功能示例

本文实例讲述了Android编程实现google消息通知功能。分享给大家供大家参考,具体如下:

1. 定义一个派生于WakefulBroadcastReceiver的类

public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {
  private static final String TAG = "GcmBroadcastReceiver";
  @Override
  public void onReceive(Context context, Intent intent) {
    Log.v(TAG, "onReceive start");
    ComponentName comp = new ComponentName(context.getPackageName(),
 GcmIntentService.class.getName());
    startWakefulService(context, (intent.setComponent(comp)));
    setResultCode(Activity.RESULT_OK);
    Log.v(TAG, "onReceive end");
  }
}

2. 用于处理broadcast消息的类

public class GcmIntentService extends IntentService {
  private static final String TAG = "GcmIntentService";
  public static final int NOTIFICATION_ID = 1;
  private NotificationManager mNotificationManager;
  NotificationCompat.Builder builder;
  private Intent mIntent;
  public GcmIntentService() {
    super("GcmIntentService");
    Log.v(TAG, "GcmIntentService start");
    Log.v(TAG, "GcmIntentService end");
  }
  @Override
  protected void onHandleIntent(Intent intent) {
    Log.v(TAG, "onHandleIntent start");
    Bundle extras = intent.getExtras();
    GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);
    String messageType = gcm.getMessageType(intent);
    if (!extras.isEmpty()) {
      if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR
   .equals(messageType)) {
 sendNotification(extras.getString("from"), "Send error",
     extras.toString(), "", null, null);
      } else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETeD
   .equals(messageType)) {
 sendNotification(extras.getString("from"),
     "Deleted messages on server", extras.toString(), "",
     null, null);
      } else if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE
   .equals(messageType)) {
 Log.v(TAG, "BUNDLE SIZE = " + extras.size());
 boolean sendreply = false;
 String msgid = null;
 for (String key : extras.keySet()) {
   if ("gcm.notification.title".equals(key)
|| "gcm.notification.body".equals(key)
|| "gcm.notification.click_action".equals(key)
|| "gcm.notification.orderNumber".equals(key)) {
     Log.v(TAG,
  "KEY=" + key + " DATA=" + extras.getString(key));
   } else if ("gcm.notification.messageId".equals(key)) {
     sendreply = true;
     msgid = extras.getString(key);
     Log.v(TAG, "KEY=" + key + " DATA=" + msgid);
   } else {
     Log.v(TAG, "KEY=" + key);
   }
 }
 sendNotification(extras.getString("from"),
     extras.getString("gcm.notification.title"),
     extras.getString("gcm.notification.body"),
     extras.getString("gcm.notification.click_action"),
     extras.getString("gcm.notification.orderNumber"), msgid);
 Log.i(TAG, "Received: " + extras.toString());
 mIntent = intent;
 if (sendreply) {
   new SendReceivedReply().execute(msgid);
 } else {
   GcmBroadcastReceiver.completeWakefulIntent(intent);
 }
      }
    } else {
      GcmBroadcastReceiver.completeWakefulIntent(intent);
    }
    Log.v(TAG, "onHandleIntent end");
  }
  private void sendNotification(String from, String title, String msg,
      String action, String ordernumber, String msgid) {
    Log.v(TAG, "sendNotification start");
    Log.v(TAG, "FROM=" + from + " TITLE=" + title + " MSG=" + msg
 + " ACTION=" + action + " ORDERNUMBER=" + ordernumber);
    mNotificationManager = (NotificationManager) this
 .getSystemService(Context.NOTIFICATION_SERVICE);
    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
 this).setSmallIcon(R.drawable.ic_launcher)
 .setContentTitle(title)
 .setStyle(new NotificationCompat.BigTextStyle().bigText(msg))
 .setContentText(msg)
 .setSound(Settings.System.DEFAULT_NOTIFICATION_URI);
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
 new Intent(this, ActivitySplash.class), 0);
    mBuilder.setContentIntent(contentIntent);
    if (ordernumber == null) {
      mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
    } else {
      int n = ordernumber.charAt(0);
      String s = String.format(Locale.ENGLISH, "%d%s", n,
   ordernumber.substring(1));
      n = Integer.valueOf(s);
      Log.v(TAG, "NOTIF ID=" + n);
      mNotificationManager.notify(n, mBuilder.build());
    }
    GregorianCalendar c = new GregorianCalendar();
    UtilDb.msgAdd(c.getTimeInMillis(), title, msg, msgid);
    Intent intent = new Intent(UtilConst.BROADCAST_MESSAGE);
    LocalBroadcastManager.getInstance(this).sendBroadcast(intent);
    Log.v(TAG, "sendNotification end");
  }
  
  
  
  private class SendReceivedReply extends AsyncTask {
    @Override
    protected Void doInBackground(String... params) {
      if (params[0] != null) {
 ArrayList nvp = new ArrayList();
 nvp.add(new BasicNamevaluePair("MessageId", params[0]));
 UtilApp.doHttpPost(getString(R.string.url_base)
     + getString(R.string.url_msg_send_received), nvp, null);
      }
      return null;
    }
    @Override
    protected void onPostExecute(Void result) {
      GcmBroadcastReceiver.completeWakefulIntent(mIntent);
    }
  }
}

服务器端(C#):

public class GoogleNotificationRequestObj
{
  public IList registration_ids { get; set; }
  public Dictionary notification { get; set; }
}
private static ILog _log = LogManager.GetLogger(typeof(GoogleNotification));
public static string CallGoogleAPI(string receiverList, string title, string message, string messageId = "-1")
{
  string result = "";
  string applicationId = ConfigurationManager.AppSettings["GcmAuthKey"];
  WebRequest wRequest;
  wRequest = WebRequest.Create("https://gcm-http.googleapis.com/gcm/send");
  wRequest.Method = "post";
  wRequest.ContentType = " application/json;charset=UTF-8";
  wRequest.Headers.Add(string.Format("Authorization: key={0}", applicationId));
  string postData;
  var obj = new GoogleNotificationRequestObj()
  {
    registration_ids = new List() { receiverList },
    notification = new Dictionary
    {
      {"body", message},
      {"title", title}
    }
  };
  if (messageId != "-1")
  {
    obj.notification.Add("messageId", messageId);
  }
  postData = JsonConvert.SerializeObject(obj);
  _log.Info(postData);
  Byte[] bytes = Encoding.UTF8.GetBytes(postData);
  wRequest.ContentLength = bytes.Length;
  Stream stream = wRequest.GetRequestStream();
  stream.Write(bytes, 0, bytes.Length);
  stream.Close();
  WebResponse wResponse = wRequest.GetResponse();
  stream = wResponse.GetResponseStream();
  StreamReader reader = new StreamReader(stream);
  String response = reader.ReadToEnd();
  HttpWebResponse httpResponse = (HttpWebResponse)wResponse;
  string status = httpResponse.StatusCode.ToString();
  reader.Close();
  stream.Close();
  wResponse.Close();
  if (status != "OK")
  {
    result = string.Format("{0} {1}", httpResponse.StatusCode, httpResponse.StatusDescription);
  }
  return result;
}

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android编程之activity操作技巧总结》、《Android资源操作技巧汇总》、《Android文件操作技巧汇总》、《Android开发入门与进阶教程》、《Android视图View技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/158442.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号