当前位置: 代码迷 >> Android >> 如何显示特定文件夹中的最后拍摄图像?
  详细解决方案

如何显示特定文件夹中的最后拍摄图像?

热度:45   发布时间:2023-08-04 09:49:04.0

我想制作像默认相机功能这样的功能。 有一个左缩略图显示最后拍摄的图像。 点击照片后,它会显示照片,我可以滑动查看下一张照片。

我的照片放在“Abc / Pictures”文件夹中。

获取特定扩展名的文件夹中的最新修改文件

import org.apache.commons.io.FileUtils;
import org.apache.commons.io.comparator.LastModifiedFileComparator;
import org.apache.commons.io.filefilter.WildcardFileFilter;

...

    /* Get the newest file for a specific extension */
    public File getTheNewestFile(String filePath, String ext) {
        File theNewestFile = null;
        File dir = new File(filePath);
        FileFilter fileFilter = new WildcardFileFilter("*." + ext);
        File[] files = dir.listFiles(fileFilter);

        if (files.length > 0) {
            /** The newest file comes first **/
            Arrays.sort(files, LastModifiedFileComparator.LASTMODIFIED_REVERSE);
            theNewestFile = files[0];
        }

        return theNewestFile;
    }

加成

获取所有文件或仅使用png和jpeg

new WildcardFileFilter("*.*");
new WildcardFileFilter(new String[]{"*.png", "*.jpg"});

使用下面的代码从文件夹中找到最新的图像,我希望你用时间戳保存图像,这是标准的appraoch。

File path = new File(Environment.getExternalStorageDirectory()
        .getPath() + "/Abc/Pictures"); 



    int imagesCount= path .listFiles().length; // get the list of images from folder
       Bitmap bmp = BitmapFactory.decodeFile(sdcardPath.listFiles()[imagesCount - 1].getAbsolutePath());
       eachImageView.setImageBitmap(bmp); // set bitmap in imageview
  相关解决方案