示例代码:
Bitmap largeIcon = BitmapFactory.decodeResource(context.getResources(), R.drawable.large_icon);
Notification.Builder builder = new Notification.Builder(context) .setContentTitle("Your notification title") .setContentText("Your notification text") .setSmallIcon(R.drawable.small_icon) .setLargeIcon(largeIcon) .setAutoCancel(true);
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(notificationId, builder.build());
上一篇:Android媒体提取器RTSP