Posts by Allan Miqueias • 19 points
3 posts
-
0
votes0
answers13
viewsQ: Capture user date and move on to be selected with BETWEEN Sqlite, Android Studio
Personal I am trying to carry out the selection of a list of data in the database Sqlite, using the following code snippet, the selection in the form that is made below is already working well.…
-
0
votes2
answers32
viewsA: I need to separate a String message in 6 Textviews
I was able to solve the problem using: /* *Abordagem utilizando split. */ String[] speed = dataString.split("@"); temperatura.setText(""); temperatura.append(speed[0]); umidadeAr.setText("");…
-
1
votes2
answers32
viewsQ: I need to separate a String message in 6 Textviews
I’m making an app with bluetooth connection and it captures the messages or data that are sent by the Internet via Bluetooth, I’m sending these messages via Bluetooth, each call sends a data and…