标签:
启动和停止Service:
Intent startIntent = new Intent(this, MyService.class); startService(startIntent); // 启动服务
Intent stopIntent = new Intent(this, MyService.class); stopService(stopIntent); // 停止服务
标签:
原文地址:http://www.cnblogs.com/plmmlp09/p/4268714.html