我正在尝试实现 Androidplot,但出现以下错误:
构造函数 LineAndPointFormatter(Integer, Integer, Integer) 已弃用
谁能告诉我LineAndPointFormatter
替换了什么以及如何实现它。
非常感谢。
我正在尝试实现 Androidplot,但出现以下错误:
构造函数 LineAndPointFormatter(Integer, Integer, Integer) 已弃用
谁能告诉我LineAndPointFormatter
替换了什么以及如何实现它。
非常感谢。
根据新的文档,这个类没有被任何东西取代。不推荐使用的构造函数仅表明您应该使用不同的构造函数。
已弃用的构造函数的 javadoc 是这样说的:
已弃用。从 0.5.1 开始:改用LineAndPointFormatter(Integer, Integer, Integer, PointLabelFormatter)。将相应参数设置为 null 以禁用绘制线条、顶点或填充。使用默认的 FillDirection.BOTTOM。
至于实现,我不能说,因为我没有使用过这个 API,但是额外的参数 ( PointLabelFormatter
) 似乎是一个简单的类,所以如果你可以使用前面的构造函数,这应该大致相同。