gpt4 book ai didi

安卓 UsbManager : Retrieve USB drive name

转载 作者:行者123 更新时间:2023-11-30 05:07:19 26 4
gpt4 key购买 nike

我需要下图中突出显示的 Pendrive 驱动器名称:

enter image description here

我尝试了 UsbDevice.getDeviceName()UsbDevice.getProductName()UsbDevice.getManufacturerName() 但没有一个提供驱动器姓名。

最佳答案

最后,我找到了解决方案。使用 StorageManager

 StorageManager storage = (StorageManager) getSystemService(STORAGE_SERVICE);
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
List<StorageVolume> volumes = storage.getStorageVolumes();
for (StorageVolume volume :volumes) {
Log.d("STORAGE", "Device name:" + volume.getDescription(this));
}
}

StorageVolume.getDescription 具有驱动器名称。

关于安卓 UsbManager : Retrieve USB drive name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54348807/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com