• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps achartengine and listview

Howdy,

I'm trying to create an activity that will show me a bar graph and under it a list with the values. I've found that achartengine was a good option to create graphs on android but now I've no idea on how to add a listview under the graph since it creates an intent and then calls startactivity.

Code:
Intent intent = ChartFactory.getBarChartIntent(this, getBarDemoDataset(), renderer, Type.DEFAULT);
startActivity(intent);

ChartFactory.getBarChartIntent its found on the achartengine library.

Any ideas?

Thanks in advance.
 
Is this library all locked down? Can you get to any of the code that runs from the intent?
 
Back
Top Bottom