版权声明:本文为博主原创文章,未经博主允许不得转载。

Android开发记录18-集成推送服务的一点说明

关于推送服务,国内有很多选择,笔者也对它们进行了一个详细的对比,一般我们产品选择推送服务主要考量以下几个要素:

1、是否收费,如何收费?

2、推送内容是是什么(是否包含通知、消息、富媒体等等)

3、稳定性、及时性如何?

4、集成难度是否简单

5、支持平台有哪些(主流Android、IOS)

6、服务端支持语言(Java、C#、PHP、Python等)

下面笔者例举国内主要的一些推送服务:

开发者可以针对产品的需求,来对比选择适合自己应用的推送服务。

笔者这里选择了“极光推送”,它是部分收费的,收费模式各位可以到官网查看;支持推送的内容有通知、消息、富媒体,稳定性好、能及时到达、提供服务API、支持Android、iOS平台,服务端支持Java、PHP、Python、C#、Ruby、Node.js。

集成极光推送笔者这里也不详细写,主要提几点:

1、使用Portal来进行测试

Portal是服务提供的传送门,我们可以使用控制台来进行推送测试,实际应用时一般是根据推送服务提供的服务端API来实现定制推送。

极光Portal如下:

android极光推送-LMLPHP

2、通知与消息的区别

通知就是可以再通知栏显示提醒用户的信息,而消息不会在通知栏显示,业务逻辑可以完全有开发者来定。

android极光推送-LMLPHP

3、推送对象

可以分为:

android极光推送-LMLPHP

广播:会把通知无区别的推送到每个人身上。

设置标签:这一般用于群组推送。

设置别名:适用于单播,根据客户端设置的别名来推送。

设置注册ID:适用于单播推送,指定推送给某一个人,可以使注册过的用户ID,主要用来区分。

4、自定义通知栏样式、附加字段的作用

我们有时候可能不想直接用Android原生的通知栏样式,如果服务提供相应的API的话,我们可以通过自定义布局来达到这个目的。极光这里提供了以下方法:

  1. // 自定义Notification样式
  2. CustomPushNotificationBuilder builder = new CustomPushNotificationBuilder(
  3. getApplicationContext(),
  4. R.layout.customer_notitfication_layout, R.id.icon, R.id.title,
  5. R.id.text);
  6. builder.layoutIconDrawable = R.drawable.ic_launcher;
  7. builder.developerArg0 = "developerArg2";
  8. JPushInterface.setPushNotificationBuilder(2, builder);
  9. Toast.makeText(getApplicationContext(), "Custom Builder - 2",
  10. Toast.LENGTH_SHORT).show();

android极光推送-LMLPHP

我们只需要指定通知栏编号,下次推送通知的时候就会以自定义的通知栏样式来显示。

这里还有一个附加字段,我们有时候可能需要根据推送的不同消息来实现跳转不同的页面,这时候就可能需要用到附加字段了,我们在Broadcast Receiver来接受推送下来的消息,解析附加字段内容,来达到我们的目的。

代码示例:

  1. package com.infzm.daily.know.receiver;
  2. import org.json.JSONException;
  3. import org.json.JSONObject;
  4. import android.content.BroadcastReceiver;
  5. import android.content.Context;
  6. import android.content.Intent;
  7. import android.os.Bundle;
  8. import cn.jpush.android.api.JPushInterface;
  9. import com.infzm.daily.know.ArticleDetailActivity;
  10. import com.infzm.daily.know.MainActivity;
  11. import com.infzm.daily.know.utils.LogUtils;
  12. public class PushReceiver extends BroadcastReceiver {
  13. private static final String TAG = "JPush";
  14. @Override
  15. public void onReceive(Context context, Intent intent) {
  16. Bundle bundle = intent.getExtras();
  17. LogUtils.logi(TAG, "[PushReceiver] onReceive - " + intent.getAction() + ", extras: "+ printBundle(bundle));
  18. if (JPushInterface.ACTION_REGISTRATION_ID.equals(intent.getAction())) {
  19. String regId = bundle.getString(JPushInterface.EXTRA_REGISTRATION_ID);
  20. LogUtils.logi(TAG, "[PushReceiver] 接收Registeration Id : " + regId);
  21. } else if (JPushInterface.ACTION_MESSAGE_RECEIVED.equals(intent.getAction())) {
  22. LogUtils.logi(TAG, "[PushReceiver] 接收到推送下来的自定义消息: " + bundle.getString(JPushInterface.EXTRA_MESSAGE));
  23. }else if (JPushInterface.ACTION_NOTIFICATION_RECEIVED.equals(intent.getAction())) {
  24. LogUtils.logi(TAG, "[PushReceiver] 接收到推送下来的通知");
  25. int notifactionId = bundle.getInt(JPushInterface.EXTRA_NOTIFICATION_ID);
  26. LogUtils.logi(TAG, "[PushReceiver] 接收到推送下来的通知的ID: " + notifactionId);
  27. } else if (JPushInterface.ACTION_NOTIFICATION_OPENED.equals(intent.getAction())) {
  28. LogUtils.logi(TAG, "[PushReceiver] 用户点击打开了通知");
  29. String type = bundle.getString(JPushInterface.EXTRA_EXTRA);
  30. LogUtils.loge(TAG, "type:" + type);
  31. try {
  32. JSONObject jsonObject = new JSONObject(type);
  33. String str = jsonObject.getString("key");
  34. if (str.equals("1")) {
  35. //打开自定义的Activity
  36. Intent i = new Intent(context, MainActivity.class);
  37. bundle.putInt("index", 1);
  38. i.putExtras(bundle);
  39. //i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  40. i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP );
  41. context.startActivity(i);
  42. }
  43. } catch (JSONException e) {
  44. e.printStackTrace();
  45. }
  46. } else if (JPushInterface.ACTION_RICHPUSH_CALLBACK.equals(intent.getAction())) {
  47. LogUtils.logi(TAG, "[PushReceiver] 用户收到到RICH PUSH CALLBACK: " + bundle.getString(JPushInterface.EXTRA_EXTRA));
  48. //在这里根据 JPushInterface.EXTRA_EXTRA 的内容处理代码,比如打开新的Activity, 打开一个网页等..
  49. } else if(JPushInterface.ACTION_CONNECTION_CHANGE.equals(intent.getAction())) {
  50. boolean connected = intent.getBooleanExtra(JPushInterface.EXTRA_CONNECTION_CHANGE, false);
  51. LogUtils.logi(TAG, "[PushReceiver]" + intent.getAction() +" connected state change to "+connected);
  52. } else {
  53. LogUtils.logi(TAG, "[PushReceiver] Unhandled intent - " + intent.getAction());
  54. }
  55. }
  56. // 打印所有的 intent extra 数据
  57. private static String printBundle(Bundle bundle) {
  58. StringBuilder sb = new StringBuilder();
  59. for (String key : bundle.keySet()) {
  60. if (key.equals(JPushInterface.EXTRA_NOTIFICATION_ID)) {
  61. sb.append("\nkey:" + key + ", value:" + bundle.getInt(key));
  62. }else if(key.equals(JPushInterface.EXTRA_CONNECTION_CHANGE)){
  63. sb.append("\nkey:" + key + ", value:" + bundle.getBoolean(key));
  64. }
  65. else {
  66. sb.append("\nkey:" + key + ", value:" + bundle.getString(key));
  67. }
  68. }
  69. return sb.toString();
  70. }
  71. }
 
 
http://blog.csdn.net/wwj_748/article/details/41867467
04-26 18:05
查看更多