android ApiDemo学习(一)service——1 Foreground Service Controller

这个博客讲的很好哦,浅显易懂。讲了很多ApiDemo的例子。收藏啦!今后对ApiDemo的讲解,除了贴出参考文章外,会补充一些参考文章没有的东西进去。

http://blog.csdn.net/mapdigit/article/details/7702570

 

调用流程:

FoureGroundService.java这个文件有两个类。

类一:ForegroundService类,继承了Service。

类二:Controller类,是类一的内部类。

 

我们从Controller开始。三个按钮,分别是开始foreground,开始backgroud,停止service。

1.

开始foreground调用startservice开启服务。调用过程为:

startservice:Intent中存放的是ACTION_FOREGROUND

onStart/onStartCommand:把intent传出去

handleCommand:判断intent中的内容为ACTION_FOREGROUND,设置notification相关信息

startForegroundCompat:设置notification为mStartForeground函数的参数

invokeMethod:调用mStartForeground/mSetForeground函数

 

2.

开始background调用startservice开启服务。调用过程为:

startService(intent):Intent中存放的是ACTION_BACKGROUND

onStart/onStartCommand:把intent传出去

handCommand:判断intent中的内容为ACTION_BACKGROUND,直接调用stopForegroundCompat

stopForegroundCompat:调用invokeMethod,第一个参数表示要调用的函数。新版本api使用mStopForeground,旧版本使用mSetForeground.

 

3.

停止service,调用stopService结束服务。调用过程为:stopService——onDestroy——stopForegroundCompat。最后调用invokeMethod。和2的最后一样,新版本api使用mStopForeground,旧版本使用mSetForeground.

你可能感兴趣的:(android,api,service,action)