Posts by Gustavo Paes • 169 points
11 posts
-
2
votes2
answers103
viewsQ: How to search multiple data in mysql without losing performance
I have a table called "readings" where my search returns 10 thousand results for the equipmentid = 1 SELECT id, result, date FROM readings WHERE equipamentid = 1; for each returned result I need to…
-
1
votes1
answer164
viewsQ: Open new screen Swift 4
I have a webview app, after the lauchScreen it goes to the Viewcontroller where it loads the page, I have a class that checks if there is a connection, and if there is not I would like to open a new…
-
0
votes1
answer81
viewsQ: error syntax when using then((result) =>
I have a site that uses pay.me (Getaway payment) I created a webview that runs perfectly in versions android 7 and 8, but in versions 6, 5 and 4 the webview has error in javascript due to the syntax…
-
6
votes1
answer1495
viewsQ: Ajax running Controller (MVC, PHP)
I just started to give a studied in mvc, and I have a question. How to make my ajax execute certain method of my controller. obs. I’m not using any framework, below is the code. View <div…
-
0
votes1
answer162
viewsQ: Load Google Maps without internet - Android
I’m creating an app using the standard google maps Activity in android studio, the application is already complete, but I would like it to work without internet, I saw that the google maps app has…
-
1
votes1
answer462
viewsQ: How to reuse code from one Activity in another?
I am creating an application in android studio in which I have a menu, I am using this menu in several activitys using "include", so in each Activity I need to rewrite the functions of the menu…
-
2
votes1
answer1550
viewsQ: How to get xml data with php?
I’m trying to integrate my system with the jadlog carrier but I can’t get the xml data with php. return url of jadlog Upshot: <soapenv:Envelope…
-
2
votes1
answer262
viewsQ: Check if webview is loaded
I need to check if the webview is loaded in order to execute a javascript function that is found in the webview, but I don’t know how to check if the webview is already loaded 100%. follows the…
-
0
votes1
answer875
viewsQ: Webview Javascript calling java method - android
I have a webview app that calls an index.html : WebView webView = (WebView)findViewById(R.id.webView); webView.getSettings().setJavaScriptEnabled(true); webView.setWebViewClient(new…
-
0
votes2
answers211
viewsA: Error while searching in MYSQL
You are using the table BOARD AS PRAN in WHERE but only set it to INNER JOIN, you must set it as follows: SELECT USU.usuario, USU.nome, USU.exp, USU.altura, USU.peso, PRAN1.exp_ref,…
-
1
votes0
answers275
viewsQ: How to get notification data with onNewIntent
I have an application where when I click on the notification I would like to get the values set in the notification putExtra within onNewIntent, follow my code to see if anyone can help me. Intent i…