上一篇极光推送第一篇:配置中的第三节我们说到了需要通过自定义
Receiver
来自己处理消息,那怎么来处理呢?
- 通知
简单场景下的通知,用户可以不写一行代码,而完全由 SDK 来负责默认的效果展示,以及默认用户点击时打开应用的主界面。 - 自定义消息
SDK 不会把自定义消息展示到通知栏。所以调试时,需要到日志里才可以看到服务器端推送的自定义消息。
自定义消息一定要由开发者写接收推送消息 Receiver 来处理收到的消息。
1.按文档接收推送消息 Receiver 配置我们自己的MyReceiver
:
<!-- 自定义Receiver 全部类型的广播都接收 -->
<receiver
android:name="com.smallcake.jpush.MyReceiver"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="cn.jpush.android.intent.REGISTRATION" /><!--字符串值 取得 Registration ID -->
<action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" /> <!--收到了自定义消息 Push-->
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" />
<action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" />
<action android:name="cn.jpush.android.intent.NOTIFICATION_CLICK_ACTION" />
<action android:name="cn.jpush.android.intent.CONNECTION" />
<category android:name="${applicationId}" />
</intent-filter>
</receiver>
1.
REGISTRATION
:取得 Registration ID ,可以与当前APP账号产生绑定
String regId = bundle.getString(JPushInterface.EXTRA_REGISTRATION_ID);
2.
MESSAGE_RECEIVED
收到了自定义消息 Push ,需要自己处理消息
String title = bundle.getString(JPushInterface.EXTRA_TITLE);
String message = bundle.getString(JPushInterface.EXTRA_MESSAGE);
String extras = bundle.getString(JPushInterface.EXTRA_EXTRA); //附加消息,可能为空
String msgId= bundle.getString(JPushInterface.EXTRA_MSG_ID);//消息唯一标示
3.
NOTIFICATION_RECEIVED
收到了通知 Push,内容为空则通知栏不展示,但广播依然有
String title = bundle.getString(JPushInterface.EXTRA_NOTIFICATION_TITLE);
String content = bundle.getString(JPushInterface.EXTRA_ALERT);
String extras = bundle.getString(JPushInterface.EXTRA_EXTRA);//附加消息,可能为空
String notificationId= bundle.getString(JPushInterface.EXTRA_NOTIFICATION_ID);//通知唯一标示
String fileHtml = bundle.getString(JPushInterface.EXTRA_RICHPUSH_HTML_PATH);//【富媒体】html的文件路径
还有其他的请看官方文档接收推送消息 Receiver了,我觉得其他的接收很少用到,这里就不罗列了。
NOTIFICATION_OPENED
用户点击了通知
未配置:此项则默认打开主页Activity
已配置:需要在我们定义的MyReceiver
自己处理此事件
String title = bundle.getString(JPushInterface.EXTRA_NOTIFICATION_TITLE);
String content = bundle.getString(JPushInterface.EXTRA_ALERT);
String type = bundle.getString(JPushInterface.EXTRA_EXTRA);
int notificationId = bundle.getInt(JPushInterface.EXTRA_NOTIFICATION_ID);
String msgId = bundle.getString(JPushInterface.EXTRA_MSG_ID);
5.
NOTIFICATION_CLICK_ACTION
用户点击了通知栏中自定义的按钮。只有开发者使用了 MultiActionsNotificationBuilder 构建携带按钮的通知栏的通知时,才需要配置
用得少看官方接收推送消息 Receiver吧
CONNECTION
JPush 服务的连接状态发生变化。
boolean connected = bundle.getBooleanExtra(JPushInterface.EXTRA_CONNECTION_CHANGE, false);
2.创建我们在xml中配置的MyReceiver
/**
* 自定义接收器
* 这里我们只处理我们关心的自定义消息:ACTION_MESSAGE_RECEIVED
*/
public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.getExtras();
if (JPushInterface.ACTION_MESSAGE_RECEIVED.equals(intent.getAction()))
processCustomMessage(context, bundle);
}
private void processCustomMessage(Context context, Bundle bundle) {
//1.这里我们拿到了极光推送过来的自定义消息
String title = bundle.getString(JPushInterface.EXTRA_TITLE);
String message = bundle.getString(JPushInterface.EXTRA_MESSAGE);
L.e("title==" + title + " message==" + message);
//2.我们把这条消息拿到后,直接通知显示
showNotice(context,message);
}
private void showNotice(Context context,String msg){
NotificationManager manager = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);
NotificationCompat.Builder builder;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel("渠道ID", "优惠券商品", NotificationManager.IMPORTANCE_LOW);
manager.createNotificationChannel(channel);
builder = new NotificationCompat.Builder(context, "渠道ID");
}else {
builder = new NotificationCompat.Builder(context);
}
Notification notification = builder
.setSmallIcon(R.mipmap.logo)
.setContentTitle("我是一个标题")
.setContentText(msg)
.setAutoCancel(true)
.build();
manager.notify(0,notification);
}
}
-
log日志打印
-
通知显示
- 当然光接收了消息,只能我们简单展示给我们自己看看,更多操作,比如点击通知跳转到主页,点击通知跳转到具体页面,就需要更多操作了:
极光推送第三篇:消息跳转和自定义