我想让app看起来像超省电模式(galaxy s5).它改变屏幕只显示黑白颜色.我不知道怎么做.任何人都可以提供一些建议或信息,如何做到这一点?非常感谢.
// Create a paint object with 0 saturation (black and white)
ColorMatrix cm = new ColorMatrix();
cm.setSaturation(0);
Paint greyscalePaint = new Paint();
greyscalePaint.setColorFilter(new ColorMatrixColorFilter(cm));
// Create a hardware layer with the greyscale paint
v.setLayerType(LAYER_TYPE_HARDWARE, greyscalePaint);
Run Code Online (Sandbox Code Playgroud)
将这些代码用于根布局.
| 归档时间: |
|
| 查看次数: |
64028 次 |
| 最近记录: |