Android消息推送,通知栏的显示和点击

首先创建一个通知栏,本例子子写出了部分常用的属性,其他的属性自行百度, json是服务器返回的参数

 public void showNotifictionIcon(Context context) {
        String title = json.optString("title");
        String content = json.optString("content");
        NotificationManager manager = (NotificationManager) mContext.getSystemService(mContext.NOTIFICATION_SERVICE);
        NotificationCompat.Builder builder = new NotificationCompat.Builder(mContext);
        builder.setTicker("来自客满满的通知");//通知首次出现在通知栏,带上升动画效果的
        builder.setAutoCancel(true);//点击后消失
        builder.setSmallIcon(R.drawable.loge);//设置通知栏消息标题的头像
        builder.setDefaults(NotificationCompat.DEFAULT_SOUND);//设置通知铃声
        builder.setContentTitle(title);//设置标题
        builder.setContentText(content);//设置内容
        builder.setPriority(Notification.PRIORITY_DEFAULT); //设置该通知优先级
        //利用PendingIntent来包装我们的intent对象,使其延迟跳转 设置通知栏点击意图
        builder.setContentIntent(createIntent(json));
        //  builder.setDeleteIntent(createDeleteIntent(json));
        manager.notify(0, builder.build());
    }

通知栏创建的时候我们给他设定一个intent,这样通知栏便可以点击
builder.setContentIntent(createIntent(json));

在这里科普下怎么获取PendingIntent

  • 你可以通过getActivity(Context context, int requestCode, Intent intent, int flags)系列方法从系统取得一个用于启动一个Activity的PendingIntent对象

  • 可以通过getService(Context context, int requestCode, Intent intent, int flags)方法从系统取得一个用于启动一个Service的PendingIntent对象

  • 可以通过getBroadcast(Context context, int requestCode, Intent intent, int flags)方法从系统取得一个用于向BroadcastReceiver的发送广播的PendingIntent对象

PendingIntent几个常量:

1.FLAG_CANCEL_CURRENT :如果AlarmManager管理的PendingIntent已经存在,那么将会取消当前的PendingIntent,从而创建一个新的PendingIntent

2.FLAG_UPDATE_CURRENT:如果AlarmManager管理的PendingIntent已经存在,可以让新的Intent更新之前PendingIntent中的Intent对象数据,例如更新Intent中的Extras,另外,我们也可以在PendingIntent的原进程中调用PendingIntent的cancel ()把其从系统中移除掉

3.FLAG_NO_CREATE :如果AlarmManager管理的PendingIntent已经存在,那么将不进行任何操作,直接返回已经存在的PendingIntent,如果PendingIntent不存在了,那么返回null

本人通过getBroadcast(Context context, int requestCode, Intent intent, int flags)方法从系统取得一个用于向BroadcastReceiver的发送广播的PendingIntent对象

     创建点击事件的广播intent
    public PendingIntent createIntent(JSONObject json) {
        Intent intent;
        PendingIntent contentIntent = null;
        Bundle mBundle = new Bundle();
        intent = new Intent();
        String content = json.optString("content");
        mBundle.putString("content", content);
        intent.putExtras(mBundle);
        intent.setClass(mContext, NotifyClickReceiver.class);
        intent.setAction("com.dianping.kmm.receiver.click.notify");
           
        contentIntent = PendingIntent.getBroadcast(mContext, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);
        return contentIntent;
    }

点击通知栏接收点击事件的广播,在onReceive里面可行性写跳转逻辑,千万不要忘记广播需要在配置文件里面注册


public class NotifyClickReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        String content = intent.getStringExtra("content");
        int type = intent.getIntExtra("type", -1);
        switch (type) {
            case AppConstant.NOTIFY_MSG_TYPE_TRADE:
                Toast.makeText(context, content + "" + type, Toast.LENGTH_LONG).show();
                break;
            case AppConstant.NOTIFY_MSG_TYPE_QA:
                Toast.makeText(context, content + "" + type, Toast.LENGTH_LONG).show();
                break;
        }


    }
}

参考文章

你可能感兴趣的:(Android消息推送,通知栏的显示和点击)