"图像渲染:像素化",就像在ImageView上一样?



使用CSS,您可以将样式添加到带有"图像渲染:像素化;"的img标记中。

有没有一种方法可以在安卓系统中实现类似的效果?

您可以通过将setFilterBitmap(false)设置为Drawable对象(使用Canvas时为Paint对象(来实现(禁用抗锯齿(。

Drawable drawable = getDrawable(R.drawable.sample);
drawable.setFilterBitmap(false);
ImageView imageView = findViewById(R.id.imageView);
imageView.setImageDrawable(drawable);

相关内容

  • 没有找到相关文章

最新更新