Displaying images from a specific folder on the SDCard using a gridview

后端 未结 6 1768
北海茫月
北海茫月 2020-11-27 17:26

I\'m attempting to create a gridview that is loaded with images from a specific folder that resides on an SDCard. The path to the folder is known, (\"/sdcard/pictures\") , b

相关标签:
6条回答
  • 2020-11-27 18:06

    In your case BitmaFactory might be a good way to go. Example:

    File dir = new File( "/sdcard/pictures" );    
    String[] fileNames = dir.list(new FilenameFilter() { 
      boolean accept (File dir, String name) {
          if (new File(dir,name).isDirectory())
             return false;
          return name.toLowerCase().endsWith(".png");
      }
    });
    for(string bitmapFileName : fileNames) {
      Bitmap bmp = BitmapFactory.decodeFile(dir.getPath() + "/" + bitmapFileName);
      // do something with bitmap
    }
    

    Not time to test this but should work ;-)

    0 讨论(0)
  • 2020-11-27 18:08

    for Kotlin code see the answer of this question

    the idea is alslo applicable for java (but you need to modify the code)

    0 讨论(0)
  • 2020-11-27 18:11

    OK, after many iterations of trying, I finally have an example that works and I thought I'd share it. My example queries the images MediaStore, then obtains the thumbnail for each image to display in a view. I am loading my images into a Gallery object, but that is not a requirement for this code to work:

    Make sure you have a Cursor and int for the column index defined at the class level so that the Gallery's ImageAdapter has access to them:

    private Cursor cursor;
    private int columnIndex;
    

    First, obtain a cursor of image IDs located in the folder:

    Gallery g = (Gallery) findViewById(R.id.gallery);
    // request only the image ID to be returned
    String[] projection = {MediaStore.Images.Media._ID};
    // Create the cursor pointing to the SDCard
    cursor = managedQuery( MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
            projection, 
            MediaStore.Images.Media.DATA + " like ? ",
            new String[] {"%myimagesfolder%"},  
            null);
    // Get the column index of the image ID
    columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media._ID);
    g.setAdapter(new ImageAdapter(this));
    

    Then, in the ImageAdapter for the Gallery, obtain the thumbnail to display:

    public View getView(int position, View convertView, ViewGroup parent) {
        ImageView i = new ImageView(context);
        // Move cursor to current position
        cursor.moveToPosition(position);
        // Get the current value for the requested column
        int imageID = cursor.getInt(columnIndex);
        // obtain the image URI
        Uri uri = Uri.withAppendedPath( MediaStore.Images.Media.EXTERNAL_CONTENT_URI, Integer.toString(imageID) );
        String url = uri.toString();
        // Set the content of the image based on the image URI
        int originalImageId = Integer.parseInt(url.substring(url.lastIndexOf("/") + 1, url.length()));
        Bitmap b = MediaStore.Images.Thumbnails.getThumbnail(getContentResolver(),
                        originalImageId, MediaStore.Images.Thumbnails.MINI_KIND, null);
        i.setImageBitmap(b);
        i.setLayoutParams(new Gallery.LayoutParams(150, 100));
        i.setScaleType(ImageView.ScaleType.FIT_XY);
        i.setBackgroundResource(mGalleryItemBackground);
        return i;
    }
    

    I guess the most important section of this code is the managedQuery that demonstrates how to use MediaStore queries to filter a list of image files in a specific folder.

    0 讨论(0)
  • 2020-11-27 18:13

    Looks like you want custom gallerry, it will take much time for you,

    I suggest you get Custom Camera Gallery for your working.

    You will get Photos/Videos in Grid View as you want.

    0 讨论(0)
  • 2020-11-27 18:18

    You need to do a few more steps than the GridView tutorial on developer.android.com. Using the following tutorial http://developer.android.com/resources/tutorials/views/hello-gridview.html

    You'll want to add a method to create ImageView's of the files from your sd card:

    Create/add a Vector to your class variables (to hold a list of ImageViews):

    private Vector<ImageView> mySDCardImages;
    

    Initialize the vector:

    mySDCardImages = new Vector<ImageView>();
    

    Create a method to load images:

    List<Integer> drawablesId = new ArrayList<Integer>();
    int picIndex=12345;
    File sdDir = new File("/sdcard/pictures");
    File[] sdDirFiles = sdDir.listFiles();
    for(File singleFile : sdDirFiles)
    {
       ImageView myImageView = new ImageView(context);
       myImageView.setImageDrawable(Drawable.createFromPath(singleFile.getAbsolutePath());
       myImageView.setId(picIndex);
       picIndex++;
       drawablesId.add(myImageView.getId());
       mySDCardImages.add(myImageView);
    }
    mThumbIds = (Integer[])drawablesId.toArray(new Integer[0]);
    

    Then down in your ImageAdapter method, change

    imageView.setImageResource(mThumbIds[position]);
    

    to

    imageView.setImageDrawable(mySDCardImages.get(position).getDrawable());
    

    Remove from the ImageAdapter the initialization of mThumbIds. (it should be up with the definition of mySDCardImages. Accessible to both class methods.)

    (Quick and dirty version) Make sure to test your path, etc and catch any Exceptions.

    0 讨论(0)
  • 2020-11-27 18:29

    read this link: http://androidsamples.blogspot.com/2009/06/how-to-display-thumbnails-of-images.html
    it shows how to use both mediastore and bitmapfactory.

    the way you should chose depends on what exactly you need. if you have a static set of images, it's much better idea to put them to drawables, i think, cause this way it's faster and you don't rely on sd card, which can be removed, corrupt or files could be renamed/deleted

    if images are dynamic, then use mediastore or bitmap factory. but keep in mind that putting images into array or something it's quite memory consuming, so you can end up having outofmemory exception

    0 讨论(0)
提交回复
热议问题