Posts by lavaprato • 135 points
8 posts
-
0
votes1
answer154
viewsQ: Ionic - Problem loading Googlemaps to emulator and mobile device
In the browser googlemaps loads normally, already in an emulator or mobile the application opens but everything is blank as in the photo, already installed the dependencies googlemaps, Geolocation…
-
1
votes1
answer1358
viewsQ: How to save and recover a date field in Sqlite3?
The point is that on the Sqlite website itself says that for fields date is to use numeric type or string, all right with numeric I write in the bank the date without special characters, however in…
-
0
votes0
answers41
viewsQ: Activity enters onPause only the first time it is called
I’ve got a Pedidocad Activity calling a Productocons, following code to open Productocons: Intent intent = new Intent(PedidoCadActivity.this, ProdutoConsActivity.class); intent.putExtra("activity",…
-
0
votes0
answers39
viewsQ: Problem assigning an Arrayadapter inside an Onclick container
Method: spnCondPagamento.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { List listaCondPagamento = new ArrayList<>(); for (int i = 0; i <…
-
6
votes0
answers292
viewsQ: Save multiline text in Blob field on Sqlite
I would like a hand in this matter of saving a EditText multiline in a blob field in the Sqlite database, because when I add ContentValue values.put(CriaBanco.OBS, pedido.getObservacao()); in the…
-
0
votes1
answer68
viewsQ: Cursor count returns more values but only adds one item in the list
I am consulting a table of Clients, I am selecting all test affine, but what is happening is that when playing the query on the cursor and giving a getCount it returns 4 as expected, but when giving…
-
1
votes1
answer339
viewsQ: onActivityResult does not return setResult
What happens is that I have an Activity Client where I have 2 buttons, one for registration and another for consultation, when I call the registration opens an Activity with a Tabhost with 2…
-
4
votes1
answer419
viewsQ: Change data from a specific position in Listview
I would like to know how I can change data from a certain Listview position. Here I upload from the database to Listview: public void carregarEmails(Cliente cliente) { ArrayList<Email>…