安卓得到SD卡图像图像、SD

2023-09-05 10:22:28 作者:风是甜的

我使用的是code这是从我的设备列出所有图片...而我试图弄明白如何将只能从特定的文件夹,不是所有的图像得到的图像。这里是code我使用:

I am using a code which is listing all the images from my device...and I'm trying to figure it out how to get images only from a specific folder, not all the images. Here is the code I'm using :

ArrayList<Bitmap> images = new ArrayList<Bitmap>();
String[] projection = {MediaStore.Images.Thumbnails.DATA};
Uri uri = Uri.parse("content://media/external/images/media");
cursor = managedQuery( uri, projection, null, null, null);
//cursor = managedQuery( MediaStore.Images.Media.EXTERNAL_CONTENT_URI, projection, null, null, null);
Log.i("MediaStore.Images.Media.EXTERNAL_CONTENT_URI", "MediaStore.Images.Media.EXTERNAL_CONTENT_URI: " + MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
if(cursor.getCount()==0){
     Log.i("No Cards","No Cards");
     cursor.close();
 } else if(cursor.getCount()>0){        
 for(cursor.moveToFirst(); cursor.moveToNext(); cursor.isAfterLast()){
     int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
     String imagePath = cursor.getString(columnIndex);
     Log.i("imagePath", "imagePath: " + imagePath);
     Bitmap b = BitmapFactory.decodeFile("/Stampii" + imagePath, null);
     images.add(b);
  }
  }

这是我想要做的事情是让从的ImagePath图片:/mnt/sdcard/Stampii/MediaCategory-251.jpg Stampii文件夹,但我不能了解如何输入正确的路径,该文件夹中。我已经试着用:

The thing that I want to do is to get images from imagePath: /mnt/sdcard/Stampii/MediaCategory-251.jpg Stampii folder, but I can't understand how to enter the right path to that folder. I've already tried with :

Uri uri = Uri.parse("content://media/external/images/media/mnt/sdcard/Stampii");

任何解决方案?

Any solutions?

推荐答案

使用

File file = new File(Environment.getExternalStoragePath()+"/Stampii/");

file imageList[] = file.listFiles();

 for(int i=0;i<imageList.length;i++)
 {
   Log.e("Image: "+i+": path", imageList[i].getAbsolutePath());

   Bitmap b = BitmapFactory.decodeFile(imageList[i].getAbsolutePath());

   images.add(b);

 }