2011.07.11(2)——— android 自定义Notification

参考:http://blog.csdn.net/ddna/article/details/5122083

自定义notification的方法:
protected void showNotification() {        // look up the notification manager service        NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);        // The details of our fake message        CharSequence from = "Joe";        CharSequence message = "kthx. meet u for dinner. cul8r";        // The PendingIntent to launch our activity if the user selects this notification        PendingIntent contentIntent = PendingIntent.getActivity(this, 0,                new Intent(this, IncomingMessageView.class), 0);        // The ticker text, this uses a formatted string so our message could be localized        String tickerText = getString(R.string.imcoming_message_ticker_text, message);        // construct the Notification object.        Notification notif = new Notification(R.drawable.stat_sample, tickerText,                System.currentTimeMillis());        // Set the info for the views that show in the notification panel.        notif.setLatestEventInfo(this, from, message, contentIntent);        // after a 100ms delay, vibrate for 250ms, pause for 100 ms and        // then vibrate for 500ms.        notif.vibrate = new long[] { 100, 250, 100, 500};        // Note that we use R.layout.incoming_message_panel as the ID for        // the notification.  It could be any integer you want, but we use        // the convention of using a resource id for a string related to        // the notification.  It will always be a unique number within your        // application.        nm.notify(R.string.imcoming_message_ticker_text, notif);    }



tickerText:这个是显示在status line上的内容
from:这个是拉下来后 通知里面的标题
message:这个是通知里面的内容
PendingIntent:点击通知后执行的intent
notif.vibrate:默认是震动提醒 其他各种提醒方式见“参考”。

更多相关文章

  1. 实例教程四:采用Pull解析器解析和生成XML内容
  2. Android启动Service的两种方式之startService()
  3. fullScreen时的软键盘监听(非重写Layout方式)
  4. Android设定屏幕只竖屏或只横屏的两种方式
  5. Android 客户端发送邮件(JMail方式)
  6. Android Activity四种加载方式
  7. android如何隐藏通知栏和禁止横屏竖屏切换

随机推荐

  1. checkbox 文字与多选框的对齐问题
  2. 打开Android(安卓)Studio报错,Unable to c
  3. 修改ProgressBar的进度条颜色
  4. android 使用xml定义自己的View
  5. Android(安卓)Application Fundamentals
  6. Android中字体的处理
  7. android配置文件详解
  8. Android(安卓)写文件权限
  9. Android(安卓)so减包相关
  10. Android(安卓)检测更新库