gpt4 book ai didi

android - 在android中放大 ImageView 时如何禁用抗锯齿?

转载 作者:太空宇宙 更新时间:2023-11-03 12:57:25 26 4
gpt4 key购买 nike

我有一个像素图,我想按比例放大。问题是当我放大它时,它会变得模糊,这是抗锯齿的原因。有没有办法直接从 xml 禁用抗锯齿?

最佳答案

希望有用

Bitmap bmpSource = BitmapFactory.decodeResource(getResources(), SourceFileId);
//100 is dimension to resizing image size
//Passing filter = false will result in a blocky, pixellated image.
//Passing filter = true will give you smoother edges
Bitmap bmpScaled = Bitmap.createScaledBitmap(bmpSource, 100, 100, false);


ImageView img = (ImageView) findViewById(Your imageView Control Id);
img.setImageBitmap(bmpScaled);

这就是你想要的吗?

关于android - 在android中放大 ImageView 时如何禁用抗锯齿?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17431420/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com