如何在启动时检查SD卡的状态?
我正在启动完成时编写一个服务。但是当服务启动时我需要写入一些文件,但由于 SD 卡尚未准备好。没有响应。一段时间后,服务会自行重新启动并将数据写入 SD 卡。
public void onReceive(Context context, Intent intent) {
context.startService(new Intent(context,CPUUtilizationService.class));
}
I am writing a service at boot completed.but i need to write some files when service get started but since sdcard is not ready .not responding.after some time the service restarts all by itself and writes data in to sdcard..
public void onReceive(Context context, Intent intent) {
context.startService(new Intent(context,CPUUtilizationService.class));
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 sdcard 已安装,则以上返回 true,否则返回 false。
above return true if sdcard is mounted otherwise false.