Sms图标出现在顶部通知栏 - 安卓

时间:2013-05-11 21:35:15

标签: android notifications sms

有人可以建议我使用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吗?

0 个答案:

没有答案