这是我正在用作进度条的SimpleArcLoader库。
https://github.com/generic-leo/SimpleArcLoader
这是我的代码:
int[] colors = {R.color.colorPrimaryDark, R.color.colorPrimary};
ArcConfiguration configuration = new ArcConfiguration(getActivity());
configuration.setColors(colors);
SimpleArcDialog mDialog = new SimpleArcDialog(getActivity());
mDialog.setConfiguration(configuration);
mDialog.show();
这总是给我灰色。我也尝试了其他颜色,但结果相同。
Here is a screenshot
我的输入错误吗?还是有什么解决方案?
最佳答案
您必须像这样声明数组颜色:
private int mColors [] = {Color.parseColor(“#F90101”),Color.parseColor(“#0266C8”)}};