5

没有 SD 卡的三星 Galaxy S3,我正在使用此代码检查存储状态。

使用此代码:

boolean mExternalStorageAvailable = false;
boolean mExternalStorageWriteable = false;
String state = Environment.getExternalStorageState();

if (Environment.MEDIA_MOUNTED.equals(state)) {
    // We can read and write the media
    mExternalStorageAvailable = mExternalStorageWriteable = true;
} else if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
    // We can only read the media
    mExternalStorageAvailable = true;
    mExternalStorageWriteable = false;
} else {
    // Something else is wrong. It may be one of many other states, but all we need
    //  to know is we can neither read nor write
    mExternalStorageAvailable = mExternalStorageWriteable = false;
}

因此,也许有人可以向我解释这款手机是否出于某种原因将其内部存储器视为外部存储器?或者是什么?

4

3 回答 3

14

getExternalStorageDirectory 并不总是返回 SDCard。

谷歌文档说:

“不要被这里的‘外部’这个词弄糊涂了。这个目录可以更好地被认为是媒体/共享存储。它是一个可以保存相对大量数据并且在所有应用程序之间共享的文件系统(不强制执行) “

“/mnt/sdcard”可能是指您手机的内置存储。

最好检查方法的返回路径getExternalStorageDirectory是否是外部可移动存储。

您可以使用Environment.isExternalStorageRemovable()进行检查。

于 2013-01-28T07:11:23.387 回答
2

Android 将始终将一个已安装的硬件内存(如果有)报告为外部存储。

那个记忆可以是:

  1. 由制造商安装在设备内部(内部存储器)
  2. 可以是 SD 卡(外部存储器)

一个设备甚至可以同时拥有两者,但 Android 只会报告其中一个(主要是内部的)。

一种简单的方法来获取安装在哪里的东西adb shell mount

rootfs on / type rootfs (ro)
tmpfs on /dev type tmpfs (rw,nosuid,mode=755)
devpts on /dev/pts type devpts (rw,mode=600)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
tmpfs on /mnt/asec type tmpfs (rw,mode=755,gid=1000)
tmpfs on /mnt/obb type tmpfs (rw,mode=755,gid=1000)
/dev/block/mtdblock2 on /system type yaffs2 (ro)
/dev/block/mtdblock3 on /data type yaffs2 (rw,nosuid,nodev)
/dev/block/mtdblock1 on /cache type yaffs2 (rw,nosuid,nodev)
/dev/block/vold/179:1 on /mnt/sdcard type vfat (rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro)
/dev/block/vold/179:1 on /mnt/secure/asec type vfat (rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro)
于 2013-01-28T07:11:23.183 回答
0

使用此代码了解设备中是否有存储卡:

Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);

if(isSDPresent)
{
  // yes SD-card is present
}
else
{
 // Sorry
}
于 2013-01-28T07:21:18.170 回答