使用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);