我想實現Androidplot,我收到以下錯誤:已過時Androidplot構造
The constructor LineAndPointFormatter(Integer, Integer, Integer) is deprecated
任何一個可以告訴我什麼LineAndPointFormatter
已被替換,以及如何實現它。
非常感謝。
我想實現Androidplot,我收到以下錯誤:已過時Androidplot構造
The constructor LineAndPointFormatter(Integer, Integer, Integer) is deprecated
任何一個可以告訴我什麼LineAndPointFormatter
已被替換,以及如何實現它。
非常感謝。
根據new documentation,這門課沒有被任何東西取代。不贊成使用的構造函數僅僅表示你應該使用不同的構造函數。
對已過時的構造函數的Javadoc這樣說:
Deprecated. As of 0.5.1: Use LineAndPointFormatter(Integer, Integer, Integer, PointLabelFormatter) instead. Set corresponding parameter to null to disable the drawing of lines, vertexes or fill. Uses a default of FillDirection.BOTTOM.
至於實現,我不能說,因爲我還沒有這個API的工作,但是額外的參數(PointLabelFormatter
)好像一個簡單的類,所以如果你可以使用前面的構造函數,這應該是基本相同的。
是的,看起來LineAndPointFormatter現在或以前的版本都沒用。我已經使用BarFormatter(int,int)解決了我的問題 – Herb 2013-02-11 21:17:41
關於LineAndPointFormatter無用:不正確。 LineAndPointFormatter過去和現在仍然是使用最廣泛的格式程序,因爲它是相應的渲染器LineAndPointRenderer要求的。新的第四個參數實際上是PointLabelFormatter實例,當它不爲null時,開發人員可以在每個點上方呈現文本。 – Nick 2013-02-12 01:11:18
@Nick,LineAndPointFormatter(Context ctx,int xmlCfgId)?這種方法似乎沒有工作...我使用0.5.2,我不斷收到崩潰,說它找不到資源ID ...我在這裏創建了一個問題:http://stackoverflow.com/問題/ 16551799/androidplot-lineandpointformatter-引起碰撞,當扯皮式上下文和-COL – whyoz 2013-05-14 21:12:30