我已经能够在设备上找到内部和外部SD卡的路径。 一切运行良好,但只能在4.4之前的设备上运行。
当我在4.4.x设备上测试代码时,我无法访问我必须从外部SD卡上传的文件。
如何解决这个问题
答案 0 :(得分:0)
首先从内存中识别您想要的文件 然后像这样使用。
Intent pictureActionIntent = new Intent(Intent.ACTION_GET_CONTENT, null);
pictureActionIntent.setType("image/*");
pictureActionIntent.putExtra("return-data", true);
startActivityForResult(pictureActionIntent, 0);