I'm trying to use the android plot library, just copy the code of the sample page
http://androidplot.com/docs/quickstart/
I add the librery source and just change the following line in the example code because it was giving me an error:
// Create a formatter to use for drawing a series using LineAndPointRenderer
// and configure it from xml:
LineAndPointFormatter series1Format = new LineAndPointFormatter();
series1Format.setPointLabelFormatter(new PointLabelFormatter());
series1Format.configure(getApplicationContext(),
R.xml.line_point_formatter_with_plf1);
I change the last line for:
R.layout.line_point_formatter_with_plf1);
The program takes several minutes to compile and give a lot of errors like the following
Android Dex: [prueba graficos] (org.eclipse.ui.internal.ide.IDEWorkbenchErrorHandler$1) that doesn't come with an
Android Dex: [prueba graficos] associated EnclosingMethod attribute. This class was probably produced by a
Android Dex: [prueba graficos] and without specifying any "-target" type options. The consequence of ignoring
I also hava an error whit the style, in the example the style is style="@style/sample_activity" but I dont have that style so I just set the layout size.
And in the layout/xml/line_point_formatter_with_plf1.xml
<?xml version="1.0" encoding="utf-8"?>
<config
linePaint.strokeWidth="3dp"
linePaint.color="#00AA00"
vertexPaint.color="#007700"
fillPaint.color="#00000000"
pointLabelFormatter.textPaint.color="#FFFFFF"/>
The word config algo give me an error: layout_height' attribute should be defined.
Actually there is a slight error in the tutorial you provided : the files line_point_formatter_plf1.xml and line_point_formatter_plf2.xml should be under the folder res/xml/ if there is no xml folder under the res/ folder just create it and it will accept the config tag without problems.
It's because you're putting them under layout/ that it consider's them as layout files and tells you 'config' tag as a root is not acceptable for a layout xml file.
And for the "layout_height' attribute should be defined" error, just add those 2 lines :
to the root tag of the simple_xy_plot_example.xml file (this error has nothing to do with the config tag)
Your simple_xy_plot_example.xml file should look like this :
I tried it and it works fine for me.