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

Android Service

时间:2014-12-15 15:17:54      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   blog   ar   color   sp   for   on   

Service的生命周期

Service对象不能自己启动,需要通过某个Activity、Service或者其他Context对象来启动。启动的方法有两种,Context.startService和Context.bindService()。
两种方式的生命周期是不同的,具体如下所示。

Context.startService方式的生命周期:
启动时,startService –> onCreate() –> onStart()
停止时,stopService –> onDestroy()

Context.bindService方式的生命周期:
绑定时,bindService  -> onCreate() –> onBind()
解绑定时,unbindService –>onUnbind() –> onDestory()

判断service是否已运行

pubic boolean isServiceRun(Context context){
     ActivityManager am = (ActivityManager)context.getSystemService(context.ACTIVITY_SERVICE);
     List<RunningServiceInfo> list = am.getRunningServices(30);
     for(RunningServiceInfo info : list){
         if(info.service.getClassName.equals("service的全称(一般为包名+service类的名称)")){
                  return true;
         }
    }
    return false;
}

 

Android Service

标签:des   android   style   blog   ar   color   sp   for   on   

原文地址:http://www.cnblogs.com/rfheh/p/4164827.html

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