解决android4.4以上手机调用系统相册路径返回错误的问题

解决android4.4以上手机调用系统相册路径返回错误的问题,网上找了许久才找着觉得有必要转载一下以便更多遇到这个问题的同学能看见,解决困惑。



                    Intent intent = new Intent(
                            Intent.ACTION_PICK,
                            android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
                    intent.setDataAndType(
                            MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                            "image/*");
                    startActivityForResult(intent, CHOOSE_PICTURE);// //适用于4.4及以上android版本


猜你喜欢

转载自blog.csdn.net/lh_qq/article/details/52092992