private void showNotification() {    Intent intent = new Intent(this,MyNotificationView.class);PendingIntent contentIntent = PendingIntent.getActivity(this,0, intent, 0);//在Status Bar显示的图片、 Ticker文本、通知时间Notification notification = new Notification(R.drawable.icon,"通知来了",System.currentTimeMillis()+5000);//在通知列表中显示的标题、内容、点击时触发的事件notification.setLatestEventInfo(MyNotification.this, "通知标题", "这是显示通知内容", contentIntent);NotificationManager nm = (NotificationManager)getSystemService(this.NOTIFICATION_SERVICE);nm.notify(R.id.my_motification, notification);}

private void showCustomViewNotification() {    Intent intent = new Intent(this,MyNotificationView.class);    PendingIntent contentIntent = PendingIntent.getActivity(this,0, intent, 0);    Notification notification = new Notification();    notification.icon = R.drawable.icon;    notification.tickerText = "通知来了";    notification.defaults = Notification.DEFAULT_SOUND;    notification.flags =  Notification.FLAG_AUTO_CANCEL;    notification.contentIntent = contentIntent;    //RemoteViews是可以在其他进程中显示的View    RemoteViews remoteViews = new RemoteViews(getApplication().getPackageName(), R.layout.custom_title);    //设置R.layout.custom_title中的TextView(R.id.right_title_text)    remoteViews.setTextViewText(R.id.right_title_text, "这是自定义通知布局");    //在通知列表中显示自定义的View    notification.contentView = remoteViews;            NotificationManager nm = (NotificationManager)getSystemService(this.NOTIFICATION_SERVICE);        nm.notify(R.id.my_motification, notification);}

更多相关文章

  1. Android(安卓)SurfaceView 实现实时显示摄像头视频
  2. Android(安卓)解决多个通知发生冲突的问题
  3. Andorid Material Design TextInputLayout和TextInputEditText
  4. 两种进度条对话框
  5. C# 实现 类似Android的Toast
  6. Android——自定义ProgressBar显示文字(有缺陷)
  7. Android全屏设置及取消全屏设置
  8. Android显示和隐藏状态栏和导航栏
  9. android 取消标题 程序意外停解决方法

随机推荐

  1. android的tabHost的使用
  2. Android : gen already exists but is no
  3. Android Volley完全解析(三),定制自己的Re
  4. android开发之Android ActionBar完全解析
  5. android 键对应的号码
  6. 深入Activity
  7. Android侧滑菜单DrawerLayout的使用
  8. android ndk 调用第三方so
  9. Android前置摄像头预览并检测人脸,获取人
  10. Android基于ViewFilpper实现文字LED显示