首页 > 代码库 > Service 使用

Service 使用

启动和停止Service:

Intent startIntent = new Intent(this, MyService.class);startService(startIntent); // 启动服务
Intent stopIntent = new Intent(this, MyService.class);stopService(stopIntent); // 停止服务

 

Service 使用