我使用此简单代码在Android 4.1或更高版本中设置了通知。
它运作良好,但是我的问题来自SmallIcon和LargeIcon。
我知道状态栏中会显示SmallIcon,而下拉列表中则会显示LargeIcon。
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setTicker("The ticker");
builder.setContentTitle("The title");
builder.setContentText("The text");
builder.setSmallIcon(R.drawable.my_small_icon);
Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.my_96px_large_icon);
builder.setLargeIcon(bm);
NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
nm.notify("direct_tag", NOTIF_ALERTA_ID, builder.build());
我的问题是:
最佳答案
除非您提供自己的通知模板(通过Notification.setContent(),