USB 连接时服务停用
我怀疑当USB连接到PC时是否可以停止服务?
if(intent.getAction().equals(Intent.ACTION_UMS_DISCONNECTED)) {
Intent intent2=new Intent(context,MyService.class);
context.startActivity(intent2);
}
else if (intent.getAction().equals( Intent.ACTION_UMS_CONNECTED)) {
stopService(new Intent(this, MyService.class));
}
我已经给出了这个,但没有用。
I have doubt whether it is possible to stop service , when USB is connected to PC?
if(intent.getAction().equals(Intent.ACTION_UMS_DISCONNECTED)) {
Intent intent2=new Intent(context,MyService.class);
context.startActivity(intent2);
}
else if (intent.getAction().equals( Intent.ACTION_UMS_CONNECTED)) {
stopService(new Intent(this, MyService.class));
}
I have given this, but it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试另一个广播接收器;
希望这有帮助。
Try another broadcast recever;
Hope this helps.