此次剪辑图片选择存储路径为用户默认存储路径,可能是内存也可能是SD卡;
Environment.getExternalStorageDirectory()获取到的不一定是内置的,这句代码获取到的是默认存储位置,如果把默认存储位置改为sdcard,那么获取到的就是/storage/sdcard/1/..默认存储位置是内置的
此次使用的下载存储位置为:
下载,存:
OutputStream output = null;
...
output = new FileOutputStream(Environment.getExternalStorageDirectory().toString()+"/download_image.jpg");
取:
1:Drawable d = Drawable.createFromPath(Environment.getExternalStorageDirectory().toString()+"/download_image.jpg");
imageView.setImageDrawable(d);
2:Uri.parse("file://"+Environment.getExternalStorageDirectory().toString() + "/download_image.jpg");