3

我使用ACTION_MEDIA_MOUNTEDACTION_MEDIA_UNMOUNTED检测USB连接Nexus 4,但我无法接收任何广播信号。

这是我的广播接收器代码:

IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_MEDIA_MOUNTED);
filter.addAction(Intent.ACTION_MEDIA_UNMOUNTED);
filter.addDataScheme("file");

debugReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        final String action = intent.getAction();
        if (Intent.ACTION_MEDIA_MOUNTED.equals(action)) {
            debugOn = true;
        } else if (Intent.ACTION_MEDIA_UNMOUNTED.equals(action)) {
            debugOn = false;
        }
    }
};
registerReceiver(debugReceiver, filter);

有任何想法吗?我还搜索了其他问题;他们说如果我添加

"filter.addDataScheme("file");"

我会收到信号,但我试过了,但什么也没收到。

4

1 回答 1

4

使用UsbManager.ACTION_USB_DEVICE_ATTACHEDUsbManager.ACTION_USB_DEVICE_DETACHED作为您的意图过滤器。

要检查与 PC 的连接,请使用Intent.ACTION_BATTERY_CHANGEDonReceive intent.getInt(BatteryManager.EXTRA_PLUGGED)查看该值是否为BatteryManager.BATTERY_PLUGGED_USB.

于 2013-04-26T03:04:33.930 回答