即兴的灵感

思维是一种艺术; 艺术需要灵感。

博客好友

最新评论

提示服务Notification在Android中的应用

短信来了,手机会发出震动或者声音通知,同时在手机上面会显示带图标的提示信息,这就是手机上的提示功能,同样地,在Android的开发中,也为我们提供了提示的相应接口。本文ATAAW.COM就将对Android中提示服务Notification做下讲解。

这里我们通过分析一个Notification的具体实现过程来,来了解Notification服务是如何实现和取消的。

A、首先需要获取系统Notification服务

NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

B、创建Notification,参数为别为图标、提示标题、提示时间

Notification notification = new Notification(R.drawable.n,"即兴提示!",System.currentTimeMillis());

C、创建意图Intent并转化为非即时意图,这样就可以在任何不确定时间被执行

Intent intent = new Intent(this,NewActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this,0,intent,0);

D、设置Notification标题、内容和触发事件

notification.setLatestEventInfo(this, "ATAAW.COM", "即兴时代!", contentIntent);

E、开启提示

notificationManager.notify(1,notification);

F、取消提示

notificationManager.cancel(1);

Android中的提示服务如上所示,当开启Notification的时候,提示信息就会显示在手机上,并在手机状态栏上有一个图标显示着,当点击这个提示就会触发事件,这时会开启NewActivity,而通过提示服务的calcel方法则可以取消提示。文章



 
凤凰涅槃/浴火重生/马不停蹄/只争朝夕
     隐姓埋名/低调华丽/简单生活/完美人生

posted on 2010-11-19 12:52 poetguo 阅读(3825) 评论(0)  编辑  收藏 所属分类: Android


只有注册用户登录后才能发表评论。


网站导航: