We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当设置成纯白色的时候,字体会变灰?
setSelectedTextColor(Color.parseColor("#ffffff"))
The text was updated successfully, but these errors were encountered:
应该是代码里有几处用-1判断了,Color.WHITE相当于就是-1:
if (!curtainEnabled && selectedTextColor == -1) { return; }
if (selectedTextColor == -1) { //没有设置选中项颜色,绘制所有项 canvas.save(); canvas.clipRect(rectDrawn); if (curvedEnabled) { canvas.concat(matrixRotate); } drawItemText(canvas, dataPosition, drawCenterYCoordinate); canvas.restore(); return; }
Sorry, something went wrong.
可能的NPE;#274 无法设置白色背景;#268 加粗属性无效;
5b24f63
参阅 4.1.5 版本
No branches or pull requests
当设置成纯白色的时候,字体会变灰?
setSelectedTextColor(Color.parseColor("#ffffff"))
The text was updated successfully, but these errors were encountered: