android smallicon 大小,android – NotificationCompat 4.1 SetSmallIcon和SetLargeIcon

解宏扬
2023-12-01

我使用这个简单的代码在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());

我的问题是:

>启动通知时,裁剪过大的小图标显示在“代码人”文本旁边,而不是显示原始的SmallIcon,而不会超过它。

>在下拉列表中我看到左边的LargeIcon,这很好。但我也看到右边的小图标,旁边的通知的时间。我不想显示。

 类似资料: