I coded an android application which is measuring heart rate from camera input. I needed to desing an ECG animation to the application. I know that ECG isn\'t related. But I\'ll
To do real time graphing of ECG data...which is what I am coding right now, you need to create a custom view. Then in the onDraw method you use your canvas to draw a bitmap. Then inside the custom I also implement a Runnable that paints the line using drawline, and then invalidates(). I'd show you code but its proprietary since everything I found did not measure up to the speeds I had to graph.