如何删除通知右下方的辅助小图标?由于我们需要为通知调用setSmallIcon方法,因此我们不能只删除对此方法的调用。
有没有办法在保留状态栏的同时删除辅助图标?我们是否必须调用setStyle并为通知设置自定义样式?
答案 0 :(得分:0)
我摆脱了它(适用于Android 5及以下版本):
NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Bitmap notificationLargeIconBitmap = BitmapFactory.decodeResource(
context.getResources(),
R.drawable.notification_icon_big);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_notification_systray)
//.setLargeIcon(notificationLargeIconBitmap)
.setContentTitle(context.getString(R.string.app_name))
.setContentText(msg)
.setColor(context.getResources().getColor(R.color.blue))
.extend(new NotificationCompat.WearableExtender().setBackground(notificationLargeIconBitmap));