public class MyActivity extends Activity { @Override public void onAttachedToWindow() { super.onAttachedToWindow(); Window window = getWindow(); // Eliminates color banding window.setFormat(PixelFormat.RGBA_8888); } }
http://stuffthathappens.com/blog/2010/06/04/android-color-banding/
2.
setDither(true)
本文介绍了一种通过设置Android应用窗口格式为RGBA_8888来消除颜色带状伪影的方法,并推荐使用dither选项进一步提高显示质量。
981

被折叠的 条评论
为什么被折叠?



