Android确实服务stopSelf()仍然需要返回

时间:2016-07-10 20:17:06

标签: android android-service

是否有必要致电回报;如果我决定在服务中的onStartCommand()中调用stopSelf()命令?

1 个答案:

答案 0 :(得分:0)

是。该方法必须具有return语句,因为onStartCommand()的签名表示它返回一个值:

public int onStartCommand (Intent intent, 
            int flags, 
            int startId)