Achartengine:以XML格式显示视图

时间:2012-08-03 08:19:59

标签: android xml achartengine

我已经玩了 AchartEngine 几天了。我修改了TrignometricFunctionsChart以显示各种可能的图形。现在我希望用户输入函数并绘制该函数的图形。为此,我需要一个EditText和一个Button内部图表。我试过阅读Android: I am using AChartEngine library for graphs, but not able to integrate achartengine's graph view with android xml?但却无法完成任务。我尝试编辑XYChartBuilder(唯一包含在XML文件中的图表),但无法将TrignometricFunctionsChart插入其中。

我不知道如何迁移这段代码:

public Intent execute(Context context) {
String[] titles = new String[] { "sin", "cos" };
List<double[]> x = new ArrayList<double[]>();
List<double[]> values = new ArrayList<double[]>();
int step = 4;
int count = 360 / step + 1;
x.add(new double[count]);
x.add(new double[count]);
double[] sinValues = new double[count];
double[] cosValues = new double[count];
values.add(sinValues);
values.add(cosValues);
for (int i = 0; i < count; i++) {
  int angle = i * step;
  x.get(0)[i] = angle;
  x.get(1)[i] = angle;
  double rAngle = angle/57.295779513082;
  sinValues[i] = rAngle;
  cosValues[i] = 0.25*rAngle;
}
int [] colors = new int[] { Color.BLUE, Color.CYAN };
PointStyle[] styles = new PointStyle[] { PointStyle.POINT, PointStyle.POINT };
XYMultipleSeriesRenderer renderer = buildRenderer(colors, styles);
setChartSettings(renderer, "Trigonometric functions", "X (in degrees)", "Y", 0, 360, -1, 1,
    Color.GRAY, Color.LTGRAY);
renderer.setXLabels(20);
renderer.setYLabels(10);
return ChartFactory.getLineChartIntent(context, buildDataset(titles, x, values), renderer);
}

1 个答案:

答案 0 :(得分:0)

将图表嵌入到布局中的最佳位置正是您提到的那个。我建议你仔细阅读演示代码。

确保您了解演示图表如何从其父类继承行为。例如,buildRenderer(),buildDataset()和其他都位于AbstractDemoChart中。