openexchangerates.org doesn't have any Java examples for fetching the rates that I could find. There is a place holder but it's empty. I would very much like to see some example code which could be used in an android application?
Asked
Active
Viewed 454 times
1 Answers
1
See this question: I need a simple java example of processing a JSON response via HTTP for Android App?
There seems to be nothing special with openexchangerates. Just get the JSON data with HTTP GET and create an object out of it. You can create a class for the exchange rate and use GSON to instantiate the object.
-
Thanks. :) This is about what I can up with myself. I was just wondering if anyone had an implementation that is a part of their android application. – wojciii Jul 14 '12 at 19:47