android10相册,android10获取相册图片
//最重要的就是加上这两个 主要作用 把获取到的图片地址转为url格式然后再转bitmap格式private void displayImage(String imagePath) {BitmapFactory.Options options = new BitmapFactory.Options();options.inJustDecodeBounds = false;// Bi...