Hello I what to make a small app for Android 2.2 that will display a chart with data that I'll get from an API. I didn't find a free library for Android that can draw the chart like I want and I was thinking to use a WebView to load a local HTML and then use a JavaScript library to draw my chart.
Is this a good solution or will this create other problems? In the same activity I will have a panel similar to the SlidingDrawer and I am concerned that the calls to my WebView to render the chart will slow down my app.
Thanks for suggestions/advice.