GraphView
GraphView copied to clipboard
Update node data
Each Node carries some data, and the data is used to generate the view.
How can I update the data and let the view reflect that (i.e. re-draw that particular node [and maybe its edges])?
At the moment there is no possibility to update the graphview without a complete redraw.
Hmm, so creating a custom adapter also won't help?
You can call GraphAdapter.notifyInvalidated() to request a complete redraw. There are other notify* methods, but they all do the same for now.