如何将全高清图像设置为图像视图



我想将全高清(1080x1920)图像设置为ImageView。我已经搜索过但没有有效的方法。

public static Bitmap decodeSampledBitmapFromResource(Resources res, int resId,
                                                     int reqWidth, int reqHeight) {
    // First decode with inJustDecodeBounds=true to check dimensions
    final BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    BitmapFactory.decodeResource(res, resId, options);
    // Calculate inSampleSize
    options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
    // Decode bitmap with inSampleSize set
    options.inJustDecodeBounds = false;
    return BitmapFactory.decodeResource(res, resId, options);
}
public static int calculateInSampleSize(
        BitmapFactory.Options options, int reqWidth, int reqHeight) {
    // Raw height and width of image
    final int height = options.outHeight;
    final int width = options.outWidth;
    Log.d("DUE","Options height: " + height + " - width: " + width);
    int inSampleSize = 1;
    if (height > reqHeight || width > reqWidth) {
        final int halfHeight = height / 2;
        final int halfWidth = width / 2;
        // Calculate the largest inSampleSize value that is a power of 2 and keeps both
        // height and width larger than the requested height and width.
        while ((halfHeight / inSampleSize) > reqHeight
                && (halfWidth / inSampleSize) > reqWidth) {
            inSampleSize *= 2;
        }
    }
    return inSampleSize;
}

或:

private Bitmap resize(int resId, int width, int height){
    BitmapFactory.Options bmpFactoryOptions = new BitmapFactory.Options();
    bmpFactoryOptions.inJustDecodeBounds = true;
    Bitmap bitmap = BitmapFactory.decodeResource(getResources(), resId, bmpFactoryOptions);
    int heightRatio = (int)Math.ceil(bmpFactoryOptions.outHeight/(float)height);
    int widthRatio = (int)Math.ceil(bmpFactoryOptions.outWidth/(float)width);
    if (heightRatio > 1 || widthRatio > 1)
    {
        if (heightRatio > widthRatio)
        {
            bmpFactoryOptions.inSampleSize = heightRatio;
        } else {
            bmpFactoryOptions.inSampleSize = widthRatio;
        }
    }else{
    }
    bmpFactoryOptions.inJustDecodeBounds = false;
    bitmap = BitmapFactory.decodeResource(getResources(), resId, bmpFactoryOptions);
    return bitmap;
}

我想显示原始图像大小,而不减小图像大小

你可以帮我吗?

谢谢大家!

You can use image loading libraries like Universal Image Loader, Fresco.
1) https://github.com/nostra13/Android-Universal-Image-Loader
2) https://github.com/facebook/fresco
3) https://guides.codepath.com/android/Displaying-Images-with-the-Fresco-Library

您发布的两个示例都有助于减小图像大小(即节省内存)。

我想显示原始图像大小,而不减小图像大小

如果只想从资源设置映像,则有更简单的替代方法。

将代码中的图像连接到图像视图:

ImageView img;
img.setImageResource(R.drawable.image);

或者从资源创建位图:

Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.image);

或者将图像设置为 xml:

<ImageView
    android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:src="@drawable/image"
    android:scaleType="center"/>    

你可以使用glide

Glide 是一个快速高效的 Android 开源媒体管理和图像加载框架,它将媒体解码、内存和磁盘缓存以及资源池包装到一个简单易用的界面中。


完全记录


使用Glide下载自定义尺寸允许添加iamge的高度和宽度

Glide的ModelLoader界面为开发人员提供了他们正在加载图像的视图的大小,并允许他们使用该大小来选择URL来下载适当大小的图像版本。使用适当大小的图像可以节省带宽、设备上的存储空间,并提高应用的性能。

最新更新