我想知道如何启动一个即使在业务关闭时也能继续运行的 android 服务。
我使用这个代码:
Intent intent = new Intent(this, MyTestService.class);
bindService(intent,connection, Context.BIND_AUTO_CREATE);
谢谢你。
我想知道如何启动一个即使在业务关闭时也能继续运行的 android 服务。
我使用这个代码:
Intent intent = new Intent(this, MyTestService.class);
bindService(intent,connection, Context.BIND_AUTO_CREATE);
谢谢你。