Programmatically Turn Off USB Storage on Android Devices

独自空忆成欢 提交于 2019-11-26 20:57:55

问题


On many android devices, when the device is plugged into the USB port of a computer or even on some USB charging devices, the phone goes into USB Storage mode. When the device is in this mode, android apps cannot access the sdcard. Is there any way (1) to detect when the device is in this mode and (2) to programmatically turn off USB storage, at least temporarily, so my android app can access the sdcard?

I've seen other SO questions and the answers are not really sufficient (e.g., Android: Detecting USB).


回答1:


You can detect it (you have the link), but, AFAIK, you can't mount/unmount USB storage at least not with the public SDK APIs. In Honeycomb (3.0 and above), USB mass storage is no longer used to access the device's external storage, so your app and a computer can access it simultaneously.




回答2:


A1: If current state of Sd card is SHARED it means that it has connected to PC in MSC mode, you can check this case as following:

String state = Environment.getExternalStorageState();
if (Environment.MEDIA_SHARED.equals(state)) {
    // Sd card has connected to PC in MSC mode
}

A2: You can force to turn off usb mass storage connection by calling:

MountService.setUsbMassStorageEnabled(false);

or

StorageManager.disableUsbMassStorage();

but unfortunately, both these API are not public accessible?!




回答3:


It blocks mass storage by using reflection on storageManger api . Storage Manager api is avaliable from sdk level -9.

I am not able to reflect Mountservice api which can target less os level. If any one has done it please give suggestions



来源:https://stackoverflow.com/questions/7396757/programmatically-turn-off-usb-storage-on-android-devices

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!