0

有人可以建议我应该使用 Android 的哪个资源,以便在通知栏中以图形方式呈现传入的短信,与 Android 的外观和感觉相同吗?

我在构建通知对象时使用android.R.drawable.ic_dialog_email,但它看起来比系统默认使用的要小一些。


Notification notification = new NotificationCompat.Builder(ctx).setAutoCancel(true).setVibrate(vibration).setOngoing(false)
.setSmallIcon(android.R.drawable.ic_dialog_email, 1).setTicker(message).setContentText(message).setContentTitle(incomingNumber).setWhen(System.currentTimeMillis())
.setContentIntent(intent).build();


我应该考虑在构建器上使用 setLargeIcon 而不是 setSmallIcon 吗?

4

0 回答 0