Android com.github.lzyzsd.circleprogress.DonutProgress DonutProgress.setFinishedStrokeColor(int color)不工作?

时间:2016-08-23 07:42:40

标签: java android android-library

我正在使用此库:https://github.com/lzyzsd/CircleProgress用于我的用户界面。

我想知道是否可以以编程方式更改finished_color。我无法做到这一点:

使用{{1}}或任何颜色都不会做任何事情,而是会产生蓝/紫色,如下所示:

UI - DonutProgress

我是用正确的方法/好方法吗?

提前致谢!

1 个答案:

答案 0 :(得分:0)

我通过使用:

解决了它

class App extends Component { getChildContext() { return {theme: { primaryColor: "purple" }}; } ... } App.childContextTypes = { theme: React.PropTypes.object };

似乎该方法无法使用资源颜色,例如R.color.mycolor。