解决在华为手机获取的图片列表中部分图片不能被获取到

来源:互联网 发布:淘宝买家如何删除评价 编辑:程序博客网 时间:2024/05/06 00:05
 /**     * @param img     */    private void SelectUserImage(ImageView img) {        //打开手机的图库;//        intent = new Intent();//        intent.setType("image/*");//        intent.setAction(Intent.ACTION_GET_CONTENT);        //上面的写法在华为手机中获取的图片列表中部分图片不能被获取到        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);    }
阅读全文
0 0
原创粉丝点击