I realized that I´m more a visual guy, i have to admit that I got dozens of drafts that i haven´t released due to lack of time. So now it´s the right time for another lab´s time . This example uses Google maps and Twitter API to find related tweets in a ratio of specified miles [...]
Archive for ‘ Uncategorized ’
Reading a json login response with Android SDK Posted by Insane in Uncategorized | 22 responses
Json had became quickly my favorite and more comfortable way to output the data, because of the simplicity of convert any data type into this type of representation. Two weeks ago I had the need to read a json server response from within an android application, althought this should be quite straight forward in any [...]
Google-api-translate-java Posted by Insane in Uncategorized | 6 responses
Encontre este proyecto en Google Code el nos permite usar Google Translate en nuestras aplicaciones Java. Su uso es de lo mas sencillo: import com.google.api.translate.Language; import com.google.api.translate.Translate; public class Main { public static void main(String[] args) { try { String translatedText = Translate.translate("Hola mundo", Language.SPANISH, Language.ENGLISH); System.out.println(translatedText); } catch (Exception ex) { ex.printStackTrace(); } } }
