Android工具集三方

极光推送第二篇:消息接收

2019-06-25  本文已影响6人  Small_Cake

极光推送第一篇:配置
极光推送第三篇:消息跳转和自定义

上一篇极光推送第一篇:配置中的第三节我们说到了需要通过自定义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了,我觉得其他的接收很少用到,这里就不罗列了。

  1. 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

  1. 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);
    }
}
上一篇下一篇

猜你喜欢

热点阅读