Android 中自动检测大容量存储/外部驱动器

发布于 2024-12-05 12:26:51 字数 218 浏览 0 评论 0原文

Android v2.2+ 是否有可能或有办法检测设备中是否插入了大容量存储、外部驱动器或微型 SD?

我的目标是,我想创建一个应用程序,一旦将微型 SD 等外部存储插入设备中,该应用程序就会被调用?

我想知道是否: 1) 一旦 SD 安装在设备中,是否有标准意图广播? 2)我是否必须在本机驱动程序层中处理它才能实现此目的?

任何想法都受到高度赞赏。

谢谢

Is it possible or is there a way in Android v2.2+ to detect if there is a mass storage, external drive or micro SD inserted in the device?

My objective is, I want to create an app that will be invoked once an external storage like micro SD is inserted in the device?

I want to know if:
1) Is there a standard intent broadcasted once an SD is mounted in the device?
2) Do I have to deal with it in the native driver layer to achieve this?

Any thoughts are highly appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

ヤ经典坏疍 2024-12-12 12:26:51

是的,有一个标准的意图广播,您可能正在寻找 ACTION_MEDIA_MOUNTED 广播。

ACTION_MEDIA_MOUNTED

自:API 级别 1
广播行动:外部媒体存在并且
安装在其安装点。挂载点的路径
删除的媒体包含在 Intent.mData 字段中。意图
包含一个额外的名称“只读”和布尔值来指示
如果媒体以只读方式安装。

来源

Yes there is a standard intent broadcast, you are probably looking for the ACTION_MEDIA_MOUNTED broadcast.

ACTION_MEDIA_MOUNTED

Since: API Level 1
Broadcast Action: External media is present and
mounted at its mount point. The path to the mount point for the
removed media is contained in the Intent.mData field. The Intent
contains an extra with name "read-only" and Boolean value to indicate
if the media was mounted read only.

Source

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