Posts by Marcos Kropp • 33 points
4 posts
-
1
votes2
answers1268
viewsQ: Search in a table in Mysql with Java
I’m having trouble trying to get something on the table, I’m new so I did it the way I know. Button code: livros.setPesquisarLivro(txtLivro.getText()); try { modelo.setNumRows(0); for (ObjetoLivro c…
-
0
votes1
answer1745
viewsQ: Pass data from an Activity to a Fragment
I need to pass the String result that is in Homeactivity for Mapsfragment, but I do not know how to do, I am beginner and do not understand much about the subject. Homeactivy package…
-
0
votes1
answer342
viewsQ: Take mysql data and use in Mapsfragment on Android
My part of php I believe is working. I don’t know how to get this data to Android. How can I do? I need to pass the name data,message,lat,long for some variable on android. Part in Php: $sql =…
-
1
votes2
answers899
viewsQ: Pass data from one Activity to another without starting it?
I’m creating an App for Android, I need to pass String type data from the first Activity(when started), to a third Activity. But without starting it. In case I get the user ID on the first screen…