我面临一些奇怪的问题,关于是否存在存储卡。我正在检查 IsSDCARD 在我的 google nexus 设备上是否显示它的真实性,但是当我尝试使用文件资源管理器从 eclipse 访问存储卡时,它显示 mnt 文件夹中没有存储卡(存储卡之前的 arrao 不存在)....这里是我的代码请帮忙
public static boolean isSDCardMounted() {
Boolean isSDPresent = android.os.Environment.getExternalStorageState()
.equals(android.os.Environment.MEDIA_MOUNTED);
Log.d("Tag", "SDCARD PRESENT....." + isSDPresent);
return isSDPresent;
}
if (!DownLoadFile.isSDCardMounted()) {
CommonFunctions.showAlerts(MainActivity.this,
"SD Card Not Available");
if (progressDialog.isShowing())
progressDialog.dismiss();
cancel(true);
}
请帮忙.....