Posts by Saulo Souza • 91 points
4 posts
-
1
votes1
answer45
viewsA: "Unfurtunately, Stealth has stopped" FATAL EXCEPTION: main
Without testing and looking closely at your code, it looks like you’re delegating buttonCalculaAV.setOnClickListener() inside buttonVerificarMedidas.setOnClickListener(). Place…
-
0
votes1
answer56
viewsA: Java Class and Variable Problem
Hi. Yes, there is. I created a class to show an example: package minhaaplicacao; import javax.swing.Joptionpane; public class Minhaclasse { public void nameMensage(String msg){…
-
5
votes1
answer6259
viewsA: Pure JS Full Countdown Timer - Troublesome Countdown
follows html code, css and javascript. copy the code into three separate files and make the modification to your liking: var configMinuto; var configSegundo; var mostrarValor; var evento = null; var…
-
0
votes1
answer96
viewsA: Android Studio Sqlite Import Error delete method
I didn’t test your code but looking at: db.execSQL("DROP IF TABLE EXISTS mylist_data"); It looks like you are putting IF before TABLE. The right thing would be: db.execSQL("DROP TABLE IF EXISTS…
androidanswered Saulo Souza 91