码迷,mamicode.com
首页 > 移动开发 > 详细

Android 进程保活 Notification详细说明

时间:2017-11-24 17:56:31      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:绑定   inner   pre   源码   int start   tno   bsp   gray   详细说明   

本来打算对Notification进行详细说明  和源码解读的  发现写的时刻又不想写。

 Notification 保活

算了 直接上源代码 

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if (Build.VERSION.SDK_INT < 18) {
startForeground(GRAY_SERVICE_ID, new Notification());
} else {
Intent innerIntent = new Intent(context, AuxiliaryService.class);
startService(innerIntent);
Notification notification = new Notification();
startForeground(GRAY_SERVICE_ID, notification);
}
return super.onStartCommand(intent, flags, startId);
}

/**
* 辅助Service 用来开启一个通知 就结束 不要创建内部类 不然回收有问题
*/
public class AuxiliaryService extends Service {
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
startNotification();
return super.onStartCommand(intent, flags, startId);
}
/** 启动通知*/
private void startNotification(){
Notification notification = new Notification();
this.startForeground(MQTTService.GRAY_SERVICE_ID, notification);
stopSelf(); //关键 如果AuxiliaryService 没有与什么组件绑定 系统就会回收
stopForeground(true);
}
}

Android 进程保活 Notification详细说明

标签:绑定   inner   pre   源码   int start   tno   bsp   gray   详细说明   

原文地址:http://www.cnblogs.com/kangqi001/p/7891471.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!