我正在使用Gallery在我们的应用程序中选择照片,然后使用Picasso加载图像
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"),MobileConstant.newInstance().REQUEST_CODE_GALLERY);
当我使用Picasso从上面的代码返回的路径加载图像时,如果文件存储在SD卡中但是它显示在本地的文件中,我无法加载图像。
我有权限集:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>