service ----onstartcommand

最近在做Android项目时,在server中需要重写onstartcommand,什么时候调用,很纠正。查了一下文档。解释如下:

这个是在startService (Intent service) 方法之后由系统调用的,传入相关的参数,类似activity的onStart。

在创建Service后也就是onCreate后调用,创建一次后以后每次启动该服务都直接调用onstartcommand。

是android2.0以后引进的取代service的onstart()方法,也就是说在之前的版本是没有的,如下面这个帖子说明的情况

在Mars的Android视频的25集Service中,继承了Service类。依视频写代码,却发现没有

public intonStartCommand (Intent intent, int flags, int startId)可以覆写。查了一下API文档,

 

在示例代码的onStart方法注释之中有这样两句话:

 

// This is the old onStart method that will be called on the pre-2.0 

// platform. On 2.0 or later we override onStartCommand() so this 

// method will not be called. 


  看到这里才恍然大悟,原来onStart方法是在Android2.0之前的平台使用的.在2.0及其之后,则需重写onStartCommand方法,同时,旧的onStart方法则不会再被调用.


  在文档中,onStart方法的解释是以下两句话:

 This method is deprecated.

 Implement onStartCommand(Intent, int, int) instead.


  意思就是不赞成使该方法。该方法的实现已经被onStartCommand所代替。


  看来还是以前的惯性思维啊。之前建工程的时候一直都是选以1.6为最低的平台,这次也选了这个,难怪会在重写的时候没有这个方法了。另外,看到视频后面,在AndroidManifest.xml中果然看到了这样一句:


</pre><pre name="code" class="html"><use-sdk android:minSdkVersion="7" />


  最低平台为7,貌似就是Android2.1啊。

 

你可能感兴趣的:(service ----onstartcommand)