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