在选项卡上显示通知

时间:2011-04-27 09:20:38

标签: android notifications

我在一个Android项目中工作,我需要在新消息到达时显示通知on the tab。我们如何添加此通知请帮助我.............谢谢。

1 个答案:

答案 0 :(得分:0)

您需要使用广播接收器来检查传入消息,并且需要使用广播检查接收ndroid.provider.Telephony.SMS_RECEIVED

if (intent.getAction().equals("android.provider.Telephony.SMS_RECEIVED")) {} like this

并使用NotificationManager显示通知

mNotificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
                    Notification notifyDetails = new Notification(R.drawable.icon,"message received",System.currentTimeMillis());