在安卓系统中,我不能在viewholder中设置图片。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在安卓系统中,我不能在viewholder中设置图片。相关的知识,希望对你有一定的参考价值。

我想在viewHolder imageview中设置图像,我在适配器中发送图像路径,我不能在 imageview中设置,因为我有转换为空值,我不能将文件路径转换为位图,请帮助我。

    if(dataModel.getPhoto()!=null)
            {
                BitmapFactory.Options options = new BitmapFactory.Options();
                Bitmap bm = BitmapFactory.decodeFile(dataModel.getPhoto(), options);
                Log.e("decodefile",":"+bm);
                viewHolder.photo.setImageBitmap(bm);

            }
答案

你没有正确使用BitmapFactory.Options试试这个:-。

public static Bitmap decodeBitmapFromFile(String filePath, int reqWidth,
        int reqHeight) {
    final BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    BitmapFactory.decodeFile(filePath, options);
    options.inSampleSize = calculateInSampleSize(options, reqWidth,
            reqHeight);
    options.inJustDecodeBounds = false;
    return BitmapFactory.decodeFile(filePath, options);
}

public static int calculateInSampleSize(BitmapFactory.Options options,
        int reqWidth, int reqHeight) {
    final int height = options.outHeight;
    final int width = options.outWidth;
    int inSampleSize = 1;
    if (height > reqHeight || width > reqWidth) {
        final int heightRatio = Math.round((float) height
                / (float) reqHeight);
        final int widthRatio = Math.round((float) width / (float) reqWidth);

        inSampleSize = heightRatio <= widthRatio ? heightRatio : widthRatio;
    }

    return inSampleSize;
}
另一答案

你能分享一些更多的细节吗?

可能是你的路径不正确.你是否使用了BitmapFactory.选项?绝对路径形象如果你不使用它,就把它改为 绝对路径.

以上是关于在安卓系统中,我不能在viewholder中设置图片。的主要内容,如果未能解决你的问题,请参考以下文章

安卓应用系列:值得收藏的ViewHolder工具类实现

五个摄像头系统界面如何布局

Linux操作系统结构IO调度器在内核栈中的位置图

安卓系统 蓝牙 与车载蓝牙的连接

Android Kotlin:null 不能转换为非 null 类型 com.android.app.ui.category.CategoryAdapter.ViewHolder 想要在 recycl

ListViewItem中的图片不能动态改变的解决方法