Android:挂载卸载并格式化SD卡
Android Icecream-sandwich 中是否有可能以编程方式格式化、安装和卸载 sdcard?
Is there any possibility given in Android Icecream-sandwich to programatically format,mount and unmount sdcard ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
相关 API 位于 com.androidserver.MountService 中(这不是新的),但此类是隐藏的,不适用于 SDK 应用程序。理论上,您可以获得
MOUNT_FORMAT_FILESYSTEMS
权限(它不是系统权限),但您无法使用它,因为 API 不是公开的。Related API's are in
com.androidserver.MountService
(it's not new), but this class is hidden and not available for SDK applications. In theory, you can get theMOUNT_FORMAT_FILESYSTEMS
permission (it is not a system permission), but you cannot use it since the API's are not public.