如何在不插入低分辨率文件的情况下显示像素化的 ImageView?

问题描述 投票:0回答:1

我想加载一个带有低分辨率png文件的ImageView。我想显示像素,但 ImageView 通过插值将其显示得模糊。如何避免这种情况?我想显示所有像素。

这是我显示 ImageView 的方式:

Drawable dr = getResources().getDrawable(R.drawable.cloud);
Bitmap cloud1Bitmap = ((BitmapDrawable) dr).getBitmap();
float cloud1Ratio = (float)cloud1Bitmap.getHeight()/cloud1Bitmap.getWidth();
        
cloud1ImageView = new ImageView(this);
cloud1ImageView.setLayoutParams(new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
cloud1ImageView.setImageBitmap(Bitmap.createScaledBitmap(cloud1Bitmap, cloud1Width, (int) (cloud1Width*cloud1Ratio), true));
main.addView(cloud1ImageView);

编辑

尝试过该功能,但没有用。也许是因为我缩放了图像?

    view.setLayoutParams(new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    
    width = (int) (sw/3);
    Drawable dr = context.getResources().getDrawable(R.drawable.ufo);
    BitmapDrawable bd = ((BitmapDrawable) dr);
    Bitmap bitmap = bd.getBitmap();
    float ratio = (float)bitmap.getHeight()/bitmap.getWidth();
    height = (int)(width*ratio);

    BitmapDrawable drawable = new BitmapDrawable(context.getResources(), Bitmap.createScaledBitmap(bitmap, width, height, false));
    drawable.setFilterBitmap(false);        
    view.setImageDrawable(drawable);

在左侧,您可以看到图像在游戏中的显示方式,在右侧,可以看到原始 PNG 的显示方式:

android imageview android-imageview pixel android-image
1个回答
2
投票

正如@pskink所说,您可以通过调用

setFilterBitmap(false)
来停止模糊/插值。对于这些示例,我在 240dp ImageView 中使用 24px 图像:

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_android);
BitmapDrawable drawable = new BitmapDrawable(getResources(), bitmap);

ImageView image = findViewById(R.id.image);
image.setImageDrawable(drawable);

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_android);
BitmapDrawable drawable = new BitmapDrawable(getResources(), bitmap);
drawable.setFilterBitmap(false);

ImageView image = findViewById(R.id.image);
image.setImageDrawable(drawable);

© www.soinside.com 2019 - 2024. All rights reserved.