Posts by Pedro Henrique de O Nascimento • 19 points
3 posts
-
-1
votes1
answer267
viewsA: Save user and password, cookie in a webview
I don’t remember if the webview allows the storage of cookies. I quickly looked at the documentation and found nothing like it, but there may be. But, a palliative solution can be you connect…
androidanswered Pedro Henrique de O Nascimento 19 -
1
votes1
answer1019
viewsA: How to put Scroll in a layout already made in Android Studio?
Face is pretty simple, actually. You can simply nest the Verticalscrollview and Horizontalscrollview classes to get the required result. See a possible solution. <!--layout.xml-->…
-
1
votes2
answers4461
viewsA: How to limit the number of decimals in Java
TextView tv = //sua textView String value = tv.getText().toString(); double n = Double.parseDouble(value) * 0.3; String result = String.format("%.2f", n); //.2 é a precisão do número…
javaanswered Pedro Henrique de O Nascimento 19