All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yy.httpproxy.service.DefaultNotificationHandler Maven / Gradle / Ivy

There is a newer version: 1.1.28
Show newest version
package com.yy.httpproxy.service;

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;

/**
 * Created by xuduo on 11/6/15.
 */

public class DefaultNotificationHandler implements NotificationHandler {

    public static final String INTENT_TAIL = ".YY_NOTIFICATION";

    @Override
    public void handlerNotification(Context context, boolean binded, PushedNotification pushedNotification) {

        showNotification(context, pushedNotification);

        sendArrived(context, pushedNotification);

    }

    public static String getIntentName(Context context) {
        return context.getApplicationInfo().packageName + INTENT_TAIL;
    }

    protected void sendArrived(Context context, PushedNotification pushedNotification) {
        String intentName = getIntentName(context);
        Intent arrive = new Intent(intentName);
        arrive.putExtra("cmd", ConnectionService.CMD_NOTIFICATION_ARRIVED);
        arrive.putExtra("id", pushedNotification.id);
        arrive.putExtra("title", pushedNotification.title);
        arrive.putExtra("message", pushedNotification.message);
        arrive.putExtra("payload", pushedNotification.payload);
        context.sendBroadcast(arrive);
    }

    protected void showNotification(Context context, PushedNotification pushedNotification) {
        String intentName = getIntentName(context);
        Intent pushIntent = new Intent(intentName);
        pushIntent.putExtra("cmd", ConnectionService.CMD_NOTIFICATION_CLICKED);
        pushIntent.putExtra("id", pushedNotification.id);
        pushIntent.putExtra("title", pushedNotification.title);
        pushIntent.putExtra("message", pushedNotification.message);
        pushIntent.putExtra("payload", pushedNotification.payload);
        PendingIntent pendingIntent = PendingIntent.getBroadcast(context, pushedNotification.id.hashCode(), pushIntent, PendingIntent.FLAG_ONE_SHOT);


        NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
        NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(context)
                        .setAutoCancel(true)
                        .setContentIntent(pendingIntent)
                        .setSmallIcon(context.getApplicationInfo().icon)
                        .setContentTitle(pushedNotification.title)
                        .setContentText(pushedNotification.message).setPriority(NotificationCompat.PRIORITY_HIGH);
        Notification notification = mBuilder.build();
        nm.notify(pushedNotification.id.hashCode(), notification);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy