Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 x 轴和 y 轴值传递给条形图以在 android 中创建条形图。这里我首选 AchartEngine 方法在 android 中创建条形图。
但问题是,我得到了这些值,即。来自 Web 服务的 x 和 y 轴值。我已成功使用这些值,但无法将这些值传递给条形图。这该怎么做?请提出建议。
提前致谢!..
而不是使用int[] series 使用
int[] series
static ArrayList<Integer> series = new ArrayList<Integer>();
并使用从 Web 服务获取的值更新此系列。
就像你收集网络服务价值一样int[] webseries
int[] webseries
for (int i =0; i< webseries.Lenght; i++) { series.add(webseries[i]); //series.add(newvlue); }
然后每次你添加数据时重新绘制它会在数据可用时动态更新