Posts by Bruno Santiago • 195 points
6 posts
-
1
votes0
answers41
viewsQ: Doubt with Parser XML
I have a project that uses Jsoup to parse an xml and I am changing the implementation to Retrofit and Simplexml, but the xml structure varies in the Content block, where can only come a String with…
-
1
votes0
answers378
viewsQ: Problem Getting Back from Delphi DLL With Java
I am developing a system in java and a part of this system needs to get data that comes from another system in Delphi. I created two functions one that returns one String and another that returns a…
-
1
votes1
answer76
viewsA: Help with Task - Javafx
Solved... Platform.runLater(new Runnable() { @Override public void run() { lbProgresso.textProperty().bind(task.messageProperty()); pbStatus.progressProperty().bind(task.progressProperty()); } });…
-
1
votes1
answer76
viewsQ: Help with Task - Javafx
Good afternoon, I would like your help with Progressbar and Task in javafx. I have a progression that have its value altered. I have the following code: Task task = new Task<Integer>() {…
-
11
votes2
answers210
viewsQ: How to detect USB connection via application?
It is possible to detect a USB connection in my Android application and how to do this? I have a sync menu that is performed via USB and FTP, however I want to make the USB option accessible only…
-
4
votes1
answer436
viewsQ: Two databases in an Android app
I have an Android application and this works with an internal database. Now I need this application to work with 2 internal databases. Is this possible on Android? Some example that can help?…