1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
| package com.xuie.notificationdemo;
import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.app.Service; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Binder; import android.os.IBinder; import android.support.v4.app.NotificationCompat; import android.widget.RemoteViews;
public class MyService extends Service { PendingIntent notifyIntent; NotificationManager mNotificationManager;
@Override public void onCreate() { super.onCreate(); Intent resultIntent = new Intent(this, ResultActivity.class); resultIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); notifyIntent = PendingIntent.getActivity( this, 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT );
mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
IntentFilter filter = new IntentFilter(); filter.addAction(REMOTE_PLAY); filter.addAction(REMOTE_NEXT); filter.addAction(REMOTE_PREVIOUS); registerReceiver(receiver, filter); }
public void startNotification() { NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setContentIntent(notifyIntent);
builder.setSmallIcon(R.mipmap.ic_launcher) .setContentTitle("Service Notification") .setContentText("Hello World!");
builder.setAutoCancel(true);
mNotificationManager.notify(101, builder.build()); }
public void bigTextNotification() { NotificationCompat.BigTextStyle textStyle = new NotificationCompat.BigTextStyle() .setBigContentTitle("BigTextContentTitle") .setSummaryText("SummaryText") .bigText("I am Big Text!");
Notification notification = new NotificationCompat.Builder(this) .setSmallIcon(R.mipmap.ic_launcher) .setTicker("show big view text") .setContentInfo("content info") .setContentTitle("ContentTitle").setContentText("ContentText") .setStyle(textStyle) .setAutoCancel(true).setDefaults(Notification.DEFAULT_ALL) .setContentIntent(notifyIntent) .setAutoCancel(true) .build(); mNotificationManager.notify(101, notification); }
public void bigPictureNotification() { NotificationCompat.BigPictureStyle pictureStyle = new NotificationCompat.BigPictureStyle() .setBigContentTitle("BigPictureContentTitle") .setSummaryText("SummaryText") .bigPicture(resource2Bitmap(this, R.mipmap.ic_big_view));
Notification notification = new NotificationCompat.Builder(this) .setLargeIcon(resource2Bitmap(this, R.mipmap.ic_big_view)) .setSmallIcon(R.mipmap.ic_launcher) .setTicker("show big view picture") .setContentInfo("content info") .setContentTitle("ContentTitle") .setContentText("ContentText") .setStyle(pictureStyle) .setAutoCancel(true) .setDefaults(Notification.DEFAULT_ALL) .build(); mNotificationManager.notify(101, notification); }
public void bigInboxNotification() { NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle(); inboxStyle.setBigContentTitle("BigInboxContentTitle").setSummaryText("SummaryText"); for (int i = 0; i < 5; i++) { inboxStyle.addLine("news" + i); }
Notification notification = new NotificationCompat.Builder(this) .setSmallIcon(R.mipmap.ic_launcher) .setTicker("show big inbox picture") .setContentInfo("content info") .setContentTitle("ContentTitle") .setContentText("ContentText") .setStyle(inboxStyle) .setAutoCancel(true) .setDefaults(Notification.DEFAULT_ALL) .build(); mNotificationManager.notify(101, notification); }
public void customNotification() { PendingIntent playIntent = PendingIntent.getBroadcast(this, 0, new Intent(REMOTE_PLAY), PendingIntent.FLAG_UPDATE_CURRENT); PendingIntent nextIntent = PendingIntent.getBroadcast(this, 0, new Intent(REMOTE_NEXT), PendingIntent.FLAG_UPDATE_CURRENT); PendingIntent previousIntent = PendingIntent.getBroadcast(this, 0, new Intent(REMOTE_PREVIOUS), PendingIntent.FLAG_UPDATE_CURRENT);
RemoteViews remoteViews = new RemoteViews(getPackageName(), R.layout.custom_notification); remoteViews.setOnClickPendingIntent(R.id.play_pause, playIntent); remoteViews.setImageViewResource(R.id.play_pause, R.mipmap.pause); remoteViews.setOnClickPendingIntent(R.id.next, nextIntent); remoteViews.setOnClickPendingIntent(R.id.previous, previousIntent);
RemoteViews remoteViews_expand = new RemoteViews(getPackageName(), R.layout.custom_expanded_notification); remoteViews_expand.setOnClickPendingIntent(R.id.play_pause, playIntent); remoteViews_expand.setOnClickPendingIntent(R.id.next, nextIntent); remoteViews_expand.setOnClickPendingIntent(R.id.previous, previousIntent); remoteViews_expand.setTextViewText(R.id.new_text, "New Add Layout");
NotificationCompat.Builder builder = new NotificationCompat.Builder(this) .setWhen(System.currentTimeMillis()) .setSmallIcon(R.mipmap.ic_launcher)
.setAutoCancel(true) .setTicker("music is playing");
Notification notification = builder.build(); notification.contentView = remoteViews; notification.bigContentView = remoteViews_expand;
mNotificationManager.notify(102, notification); }
public static final String REMOTE_PLAY = "remote play"; public static final String REMOTE_PREVIOUS = "remote previous"; public static final String REMOTE_NEXT = "remote next";
private BroadcastReceiver receiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (action.equals(REMOTE_PLAY)) { System.out.println("REMOTE_PLAY"); } else if (action.equals(REMOTE_NEXT)) { System.out.println("REMOTE_NEXT"); } else if (action.equals(REMOTE_PREVIOUS)) { System.out.println("REMOTE_PREVIOUS"); } } };
@Override public void onDestroy() { super.onDestroy(); unregisterReceiver(receiver); }
class MyBinder extends Binder { MyService getService() { return MyService.this; } }
@Override public IBinder onBind(Intent intent) { return new MyBinder(); }
public static Bitmap resource2Bitmap(Context context, int drawId) { return BitmapFactory.decodeResource(context.getResources(), drawId); }
}
|