Diamo il benvenuto a Marco, Marco e Simona che oggi salgono a bordo di Synaptica! Buon viaggio!
public static Map getLatitudeLongitudeByAddress(String completeAddress) { try { String surl = “https://maps.googleapis.com/maps/api/geocode/json?address=”+URLEncoder.encode(completeAddress, “UTF-8”)+”&key=”+API_KEY; URL url = new URL(surl); InputStream is = url.openConnection().getInputStream(); BufferedReader streamReader = new BufferedReader(new InputStreamReader(is, “UTF-8”)); StringBuilder responseStrBuilder = new StringBuilder(); String inputStr; while ((inputStr = streamReader.readLine()) != null) responseStrBuilder.append(inputStr); JSONObject jo = new JSONObject(responseStrBuilder.toString()); JSONArray results = jo.getJSONArray(“results”); String lat =…
Leggi tutto
We are building a prototype of a ready-to-use box to provide remote read/write access to your devices via web. Based on Raspberry pi 3 + Android, Remode Manager App will be preinstalled and configured so that a simple usb/serial connection will instantly allow to remotely send command or receive data to Arduino or other IOT-oriented…
Leggi tutto
Questo post da stack overflow è veramente veramente utile a risparmiare molto tempo e decine di righe di codice! http://stackoverflow.com/questions/28305745/textview-scrolling-is-resetting-when-i-update-a-different-textview-from-the-same Sostanzialmente la scroll animation su una TextView Android con scroll automatico orizzonatale (ellipsize marquee) viene resettata ogni qual volta cambia qualcosa nel layout in cui sono inserite se è impostata sulla textview una dimensione relativa…
Leggi tutto