Android:扫描目录并显示图片(缩略图)(图片未存储在mediastore中)

Android:扫描目录并显示图片(缩略图)(图片未存储在mediastore中),第1张

概述我最近使用我使用媒体查询和媒体库设计的自定义图库对显示图片进行了一些测试…它工作得很好,但我真的需要做一些自定义的事情. 我不希望在媒体商店中扫描或提供图片,因此我希望我的应用扫描目录并创建缩略图并显示这些缩略图. 我发现它真的很薄,找到任何高质量的例子来做到这一点. 任何人都可以帮助一个小例子. 这是我想要做的. >图片存储在SD卡的目录中. >使用我的自定义图库,它将扫描此目录,但“不”使用媒 我最近使用我使用媒体查询和媒体库设计的自定义图库对显示图片进行了一些测试…它工作得很好,但我真的需要做一些自定义的事情.

我不希望在媒体商店中扫描或提供图片,因此我希望我的应用扫描目录并创建缩略图并显示这些缩略图.

我发现它真的很薄,找到任何高质量的例子来做到这一点.

任何人都可以帮助一个小例子.

这是我想要做的.

>图片存储在SD卡的目录中.
>使用我的自定义图库,它将扫描此目录,但“不”使用媒体库
>我需要显示目录的内容,但作为缩略图我假设我需要先创建这个缩略图?
>点击一个thumnail将是我的自定义图库中的全屏图像.

我想我只需要一些帮助就可以从目录中获取图片,因为我没有存储整个媒体库,所以我无法使用查询.另一件令我担心的事情是,我需要为这些图像中的每一个创建缩略图(在运行中?)因为显示图像但是尺寸减小我会怀疑性能会非常糟糕.

任何人都可以伸出援助之手吗?

提前致谢

解决方法 我前一段时间做的完全相同.您必须将图像所在的文件夹名称传递给setBaseFolder.这个方法反过来调用refresh() – 使用filenameFilter(代码不包括但很容易实现)从该文件夹获取名为orig _…. jpg的所有图像并将其保存在mfileList中.然后我们调用notifyDataSetChanged(),然后调用每个单元格的getVIEw().

现在,在getVIEw()中我们要么从缓存中获取一个缩略图位图,如果我们已经有了它,否则我们制作一个灰色占位符并启动thumbnailBuilder来创建缩略图.从中获取位图.

我认为你必须稍微更改thumbnailBuilder,因为我创建了相当大的“缩略图”(500×500),因为我还需要调整大小的图像用于其他目的.此外,当我处理相机拍摄的照片时,有一些东西,根据exif信息旋转图像.但基本上,thumbnailBuilder只是检查是否已经有缩略图(我的缩略图图像放在同一个文件夹中,但前缀是small_而不是orig_) – 如果缩略图已经存在,我们将其作为Bitmap并完成,否则图像生成.最后,在onPostExecute()中,位图设置为ImageVIEw.

public class PhotoAdapter extends BaseAdapter {private Context mContext;private int mCellSize;private file mFolder;private file[] mfileList;private Map<Object,Bitmap> mthumbnails = new HashMap<Object,Bitmap>();private Set<Object> mCreatingTriggered = new HashSet<Object>(); // flag that creating already triggeredpublic PhotoAdapter(Context context,int cellSize) {    mContext = context;    mCellSize = cellSize;}@OverrIDepublic int getCount() {    if (mFolder == null) {        return 0;   // don't do this    } else {        return mfileList.length;    }}@OverrIDepublic Object getItem(int position) {    return mfileList[position];}@OverrIDepublic long getItemID(int position) {    return position;}@OverrIDepublic VIEw getVIEw(int position,VIEw convertVIEw,VIEwGroup parent) {    ImageVIEw vIEw = (ImageVIEw)convertVIEw;    if (vIEw == null) {        vIEw = new ImageVIEw(mContext);        vIEw.setLayoutParams(new GrIDVIEw.LayoutParams(mCellSize,mCellSize));        vIEw.setScaleType(ImageVIEw.ScaleType.CENTER_CROP);        vIEw.setpadding(8,8,8);        vIEw.setBackgroundcolor(0xFFC6CCD3);    }    Object item = getItem(position);    Bitmap bm = mthumbnails.get(item);    if (bm == null) {        vIEw.setimageBitmap(null);        if (!mCreatingTriggered.contains(item)) {            mCreatingTriggered.add(item);            new thumbnailBuilder(vIEw,(file)item).execute();        }    } else {        vIEw.setimageBitmap(bm);    }    return vIEw;}public voID setBaseFolder(file baseFolder) {    if (baseFolder == null) return;    if (!baseFolder.equals(mFolder)) {        releasethumbnails();        mFolder = baseFolder;    }    refresh();}public voID refresh() {    if (mFolder == null) {        return;    }    mfileList = mFolder.Listfiles(EtbApplication.origImagefilenameFilter);    if (mfileList == null) mfileList = new file[0];    notifyDataSetChanged();}public voID releasethumbnails() {    for (Bitmap bm : mthumbnails.values()) {        bm.recycle();    }    mthumbnails.clear();}// ------------------------------------------------------------------------------------ Asynchronous thumbnail builderprivate class thumbnailBuilder extends AsyncTask<VoID,Integer,Bitmap> {    private ImageVIEw mVIEw;    private file mfile;    public thumbnailBuilder(ImageVIEw vIEw,file file) {        mVIEw = vIEw;        mfile = file;    }    @OverrIDe    protected Bitmap doInBackground(VoID... params) {        Log.d("adapter","make small image and thumbnail");        try {            return createthumbnail(mfile.getabsolutePath());        } catch (Exception e) {            return null;        }    }    @OverrIDe    protected voID onPostExecute(Bitmap result) {        if (result != null) {            mVIEw.setimageBitmap(result);            mthumbnails.put(mfile,result);        } else {            mVIEw.setimageResource(R.drawable.ic_launcher);        }    }    /**     * Creates thumbnail (also rotates according to exif-info)     * @param file     * @return     * @throws IOException     */    private Bitmap createthumbnail(String file) throws IOException {        file thumbnailfile = new file(file.replace("orig_","small_"));        // If a small image version already exists,just load it and be done.        if (thumbnailfile.exists()) {            return BitmapFactory.decodefile(thumbnailfile.getabsolutePath());        }        // Decode image size        BitmapFactory.Options bounds = new BitmapFactory.Options();        bounds.inJustDecodeBounds = true;        BitmapFactory.decodefile(file,bounds);        if ((bounds.outWIDth == -1) || (bounds.outHeight == -1))            return null;        int w,h;        if (bounds.outWIDth > bounds.outHeight) {   // Querformat            w = 500;            h = 500 * bounds.outHeight / bounds.outWIDth;        } else {    // Hochformat            h = 500;            w = 500 * bounds.outWIDth / bounds.outHeight;        }        BitmapFactory.Options opts = new BitmapFactory.Options();        opts.inSampleSize = 4;  // resample -- kleiner aber noch nicht dIE 500 Pixel,dIE kommen dann unten        Bitmap resizedBitmap = BitmapFactory.decodefile(file,opts);        resizedBitmap = Bitmap.createScaledBitmap(resizedBitmap,w,h,true);        ExifInterface exif = new ExifInterface(file);        String orIEntString = exif.getAttribute(ExifInterface.TAG_ORIENTATION);        int orIEntation = orIEntString != null ? Integer.parseInt(orIEntString) : ExifInterface.ORIENTATION_norMAL;        int rotationAngle = 0;        if (orIEntation == ExifInterface.ORIENTATION_ROTATE_90) rotationAngle = 90;        if (orIEntation == ExifInterface.ORIENTATION_ROTATE_180) rotationAngle = 180;        if (orIEntation == ExifInterface.ORIENTATION_ROTATE_270) rotationAngle = 270;        Matrix matrix = new Matrix();        matrix.setRotate(rotationAngle,(float) resizedBitmap.getWIDth() / 2,(float) resizedBitmap.getHeight() / 2);        Bitmap rotatedBitmap = Bitmap.createBitmap(resizedBitmap,matrix,true);        resizedBitmap.recycle();        ByteArrayOutputStream bytes = new ByteArrayOutputStream();        rotatedBitmap.compress(Bitmap.CompressFormat.JPEG,90,bytes);        thumbnailfile.createNewfile();        fileOutputStream fo = new fileOutputStream(thumbnailfile);        fo.write(bytes.toByteArray());        fo.close();        //new file(file).delete();  // Originalbild löschen        return rotatedBitmap;    }}}
总结

以上是内存溢出为你收集整理的Android:扫描目录并显示图片(缩略图)(图片未存储在mediastore中)全部内容,希望文章能够帮你解决Android:扫描目录并显示图片(缩略图)(图片未存储在mediastore中)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1126684.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存