Posts by Yuri Ferreira • 39 points
5 posts
-
0
votes1
answer84
viewsA: Modal loses focus when closing another modal
Solution I found #modal_1 { overflow-y:scroll; }
-
0
votes1
answer84
viewsQ: Modal loses focus when closing another modal
Good morning, guys. I have a situation here that I can’t seem to resolve. is as follows: I have a Botstrap 4 Modal window. From this Modal window I press a button and open a second Modal Search…
-
2
votes1
answer74
viewsQ: Retrieve gateway from the network?
Does anyone know or knows any way to find the IP address of gateway network ? The local ip I know I can recover with the class InetAddress: InetAddress.getLocalHost().getHostAddress();…
-
0
votes2
answers100
viewsQ: Networkonmainthreadexception error while recovering local IP from device
String netAddress = "000.000.000.000"; try { netAddress = InetAddress.getLocalHost().getHostAddress(); } catch (Exception e1) { e1.printStackTrace(); } ipLocal.setText(netAddress); I am trying to…
-
0
votes0
answers302
viewsQ: Error running setOnClickListener
I’m not able to do a simple BMI calculation. This is the error that appears in the image. Code: ButtonCalcular.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View…