USB 连接时服务停用

发布于 2024-12-20 10:22:48 字数 361 浏览 1 评论 0原文

我怀疑当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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女的英雄梦 2024-12-27 10:22:48

尝试另一个广播接收器;

public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();
    // UsbManager.ACTION_USB_STATE -> "android.hardware.usb.action.USB_STATE" actually
    if (action.equals(UsbManager.ACTION_USB_STATE)) {
        Bundle extras = intent.getExtras();
        // UsbManager.USB_CONNECTED -> "connected" actually
        usbConnected = extras.getBoolean(UsbManager.USB_CONNECTED);
        ...

希望这有帮助。

Try another broadcast recever;

public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();
    // UsbManager.ACTION_USB_STATE -> "android.hardware.usb.action.USB_STATE" actually
    if (action.equals(UsbManager.ACTION_USB_STATE)) {
        Bundle extras = intent.getExtras();
        // UsbManager.USB_CONNECTED -> "connected" actually
        usbConnected = extras.getBoolean(UsbManager.USB_CONNECTED);
        ...

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文