Posts by Eduardo • 137 points
9 posts
-
1
votes1
answer1146
viewsQ: How to return a value in a Mysql database
I have the following protocol: DELIMITER $$ CREATE PROCEDURE sp_CalculaVolume ( IN vReservatorioCodigo bigint, OUT Retorno decimal ) BEGIN Declare Formato int; Declare TipoReservatorio bigint;…
-
0
votes1
answer76
viewsQ: Referencing scripts on different PHP pages
I have the following structure: |- /root |-- /services |--- /criminal records |-- /view |--- Dashboard.php |--- php menu. |--- /registers |---- /people |----- Include_people.php |-- /scripts |-- js…
-
6
votes1
answer591
viewsQ: Query a web service every 1 minute
I have a Web Service in JSON, which I am consulting through a PHP page and saving the data in a Mysql database. This Web Service contains information from some sensors and, every 1 minute wanted to…
-
1
votes2
answers162
viewsA: onTaskRemoved() method giving error
Service class: public class KillNotificationsService extends Service { public static int NOTIFICATION_ID = 1; private NotificationManager mNM; private final IBinder mBinder = new KillBinder(this);…
-
2
votes2
answers162
viewsQ: onTaskRemoved() method giving error
I have an Activity that extends Appcompatactivity and in it I have the following method: @Override public void onTaskRemoved(Intent rootIntent) { NotificationManager mNotificationManager =…
-
0
votes1
answer39
viewsA: Back to another dialogAlert
Creates a call from the first Alertdialog within the method onBackPressed()
-
0
votes1
answer124
viewsQ: List Adapter duplicating positions in Listview
I have a class called "Adapterlistplayers" that extends the class Basedapter and in it I inflate a layout that contains a Checkbox and an Imageview. Class Adapterlistplayers public class…
-
2
votes1
answer349
views -
1
votes1
answer125
viewsQ: Jsonobjectrequest does not enter onResponse()
I’m doing a home automation project with Android and Arduino and I have this snippet of code in my class whose purpose is to consult the values of Webservice in Json. But every time I call this…