android - 根据背景反转油漆颜色

标签 android

我正在编写一个自定义进度条。我想创建类似于

的效果

enter image description here

其中“50%”文本颜色动态更改为白色,而黑色条向右移动。使用“简单”的解决方案可能吗?我查阅了 PorterDuff、ColorFilters、xFermodes,似乎没有任何效果。有任何想法吗? ATM 我的代码看起来像这样:

    Rect r = new Rect(1, 1, m_width-1, m_height-1);
    canvas.drawRect(r, pWhiteFill);
    r = new Rect(1, 1, progressWidth, m_height-1);
    canvas.drawRect(r, pBlackFill);     
    canvas.drawText(String.valueOf(progress)+"%", m_width/2, m_height/2, pBlackTxtM);

有没有办法修改 pBlackTxtM 绘画以根据其下方“ Canvas ”上绘制的内容更改颜色?

最佳答案

即使这个问题很老,我也想分享这个问题的解决方案。

您无法使用“反转”Paint 来实现此目的,但可以使用剪切来实现。

这个想法是绘制文本两次,一次为黑色,一次为白色,同时设置剪切区域以匹配栏的相应部分。

这里有一些代码来概述这个想法:

// store the state of the canvas, so we can restore any previous clipping
canvas.save();

// note that it's a bad idea to create the Rect during the drawing operation, better do that only once in advance
// also note that it might be sufficient and faster to draw only the white part of the bar
Rect r = new Rect(1, 1, m_width-1, m_height-1);
canvas.drawRect(r, pWhiteFill);

// this Rect should be created when the progress is set, not on every drawing operation
Rect r_black = new Rect(1, 1, progressWidth, m_height-1);
canvas.drawRect(r_black, pBlackFill);

// set the clipping region to the black part of the bar and draw the text using white ink
String text = String.valueOf(progress)+"%";
canvas.cliprect(r_black);
canvas.drawText(text, m_width/2, m_height/2, pWhiteTxtM);

// draw the same text again using black ink, setting the clipping region to the complementary part of the bar
canvas.clipRect(r, Region.Op.XOR);
canvas.drawText(text, m_width/2, m_height/2, pBlackTxtM);

canvas.restore();

关于android - 根据背景反转油漆颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43970790/

相关文章:

Android "scroll"TextView 中的文本

javascript - 使用 Android Webview 覆盖当前的 Javascript 函数

android - 单独线程中的 ProgressDialog 给出 **未捕获的远程异常!**

android - 如何使用 proguard 将文件保存在 Assets 文件夹中?

android - 反转状态栏的图标颜色

Android 服务似乎从未启动 - onStartCommand() 未调用

java - 为什么在调用 WriteResult 之前,batch.commit() 不起作用?

java - 按内容格式化 ListView 项目

java - 如何在每个句子的末尾添加一个空格?

java - 在 libgdx 项目中使用钻石运算符