首页 > 代码库 > 37、
37、
1 new Thread() { 2 3 @Override 4 public void run() { 5 // TODO Auto-generated method stub 6 super.run(); 7 NotificationManager manager = (NotificationManager)
getSystemService(NOTIFICATION_SERVICE); 9 Notification notification = new Notification();10 // 不会被清除11 notification.flags = Notification.FLAG_NO_CLEAR;12 notification.icon = R.drawable.main_icon_notification;13 notification.tickerText = "XXX正在保护您的手机";14 // 远程的view 我们的view对象 是要显示在另外一个进程里面 另外一个程序里面 所以就需要一个remote view15 RemoteViews rv = new RemoteViews(getPackageName(),16 R.layout.monitor_app);17 rv.setTextViewText(R.id.textView1, "XXX正在保护您的手机");18 rv.setProgressBar(R.id.progressBar1, 100, 0, false);19 notification.contentView = rv;20 Intent intent = new Intent(MonitorService.this,21 SplashActivity.class);22 PendingIntent pendingIntent = PendingIntent.getActivity(23 MonitorService.this, 0, intent,24 Intent.FLAG_ACTIVITY_NEW_TASK);25 notification.contentIntent = pendingIntent;26 27 manager.notify(2, notification);28 }29 30 }.start();
37、
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。