In Firemonkey you can manage the virtualkeyboard on your mobile applications. if you need that the keyboard not autoshow in your application when a text box is selected you can add this code: // uses FMX.Types // you can set TVKAutoShowMode = (DefinedBySystem, Never, Always); FMX.Types.VKAutoShowMode :=TVKAutoShowMode.vkasNever; obviusly to enable the virtual keyboard: // uses…
Read more
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 =…
Read more
Assuming that you know how to make a web server with TidHttpServer, but now you need to put your server in HTTPS, so to do that you need to add to your application the TIdServerIOHandlerSSLOpenSSL and set it as the IOHandler of your TidHTTpServer. IMG IOHANDLER Now you need a valid and unique certificate, to…
Read more
A new version of Remode Server is ready for Mac,Windows and Android!!! You can download the manger and have more information following this link: Remode server official page Whats new: – Extended the web interface, settings and the serail console is integrated in the the Web Admin page – Fixed a problem with camera on…
Read more
I found this procedure on Stackoverflow (http://stackoverflow.com/questions/233507/how-to-log-out-user-from-web-site-using-basic-authentication) that allow clear authentication saved in the browser for your site: function ClearAuthentication(LogOffPage) { var IsInternetExplorer = false; admin = ‘n’; try { var agt=navigator.userAgent.toLowerCase(); if (agt.indexOf(“msie”) != -1) { IsInternetExplorer = true; } } catch(e) { IsInternetExplorer = false; }; if (IsInternetExplorer) { // Logoff Internet Explorer…
Read more
From 13 September 2016 will be available the iOS10… also the iPhone7. for specific information you can visit the Apple link: https://developer.apple.com/ios/ In few words there are some news, most important for me are: 1) API/SDK to integrae “Siri” in your application 2) Proactive suggestions: iOS 10 introduces new ways to increase engagement with your…
Read more