赞
踩
在 Android 中启动 service 的方法如下:
创建 service 的类,并在 AndroidManifest.xml 文件中注册该 service。
使用 Intent 类来启动 service。
例如:
Intent intent =new Intent(this, MyService.class);startService(intent);