1

我想知道如何启动一个即使在业务关闭时也能继续运行的 android 服务。

我使用这个代码:

Intent intent = new Intent(this, MyTestService.class);          
bindService(intent,connection, Context.BIND_AUTO_CREATE);

谢谢你。

4

2 回答 2

2
 Intent intent = new Intent(this, MyTestService.class);   
 startService(intent);
于 2013-06-11T20:15:17.673 回答
1

你可以试试

startService(new Intent(this, MyTestService.class));

Intent intent = new Intent(this, MyTestService.class);  
于 2013-06-11T20:15:53.733 回答