emulator里面Gallery进去不能够识别SD Card及解决

进入Gallery显示<string name="no_sd_card">SD Card unmounted or not present</string>在strings.xml中,
no_sd_card在Gallery.java中的checkStorage中使用,
if (mNumRetries == 1) {
   mApp.showToast(getResources().getString(Res.string.no_sd_card), Toast.LENGTH_LONG);
}

在ImageManager.java中hasStorage返回false,
在Environment.java中的getExternalStorageState中返回removed(初始化值),
状态值只能通过updatePublicVolumeState函数来改变,而该函数没有被调用到。

这是因为在MountService.java的Thread()->run()中
String path = Environment.getExternalStorageDirectory().getPath();

if (!tok[1].equals(path)) {
    Slog.w(TAG, String.format(
            "Skipping unknown volume '%s'",tok[1]));
    continue;
}

路径不一样执行 continue;不能向下运行updatePublicVolumeState来改变状态。

public static File getExternalStorageDirectory() {
    String lastMount =
        SystemProperties.get("EXTERNAL_STORAGE_MOUNT", "/sdcard");
    return new File(lastMount);
}
中返回使path="/sdcard",而tok[1]="/mnt/sdcard",两个不相等。
修改getExternalStorageDirectory函数中sdcard路径为SystemProperties.get("EXTERNAL_STORAGE_MOUNT", "/mnt/sdcard");

就可以了。
这样进入Gallery就可以扫描到我的视频和图片文件了。

: )

你可能感兴趣的:(emulator里面Gallery进去不能够识别SD Card及解决)