How to plot real time data in android?

android, charts

Solution

Its better to use flot-android-chart for different types of charts creation.

or you can simply use `achartengine`

if you want to try creating charts without any built in jars just look at this `Bar Chart in Android With out any Built in jars`(But it is only bar chart)

Problem

I am designing an android application where I want to plot real time data which I receive through bluetooth. I receive a signal and process it to get some result and I want to display it in real time. I saw there are various android libraries for drawing charts. I am a bit confused as to go with one such library or to use Javascript. Can anyone suggest it which is a better option to go with? And also, which Android library to use?

Original source