I have a GraphView
that is not updated when new data is added, it changes the Y value to accommodate for the new data, but it doesn\'t draw them, here is the co
Right now its chafing values but not changing UI, because you need to do such UI update operations in separate thread. You need to place all your code which is inside onClick
in Thread
/Runnable
. Create Thread
object inside onClick
& place that code.
Refer below link :
http://karanbalkar.com/2014/05/display-graphs-using-graphview-in-android/