Basically, I want to retrieve content from wikipedia. But I want to display it inside my Android Apps directly. Not immidiately redirect to the internet browser, but to display it inside my apps first.
Currently, I manage to request the Wikipedia API and get only the main content by using http://en.wikipedia.org/w/api.php?action=parse&prop=text&format=xml&page=Bla_Bla_Bla. and because I parse the data, I will use WebView to render in the Android. It successfully rendered. But only to those unprotected article...
If it is protected such as Mona Lisa, the output was not rendered properly in the WebView Android.
I want to know has anybody try to retrieve a wikipedia content and display it in your android apps, easily and beautifully?
Thank you :)