Posts by Fabio Nobre • 93 points
10 posts
-
1
votes1
answer185
viewsQ: Does any url open in webview?
I have my job: webView.setWebViewClient(new WebViewClient(){ @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { if…
-
0
votes1
answer41
viewsQ: How do I disable a function when and old android API
I have the function View.OnScrollChangeListener which has been deployed to API 23 only. In the previous API example of Kitkat API 19. This function does not work. Like I do in my code oncreate when…
-
2
votes2
answers143
viewsQ: Separating a String, how do I do?
I have a: String url = intent://instagram.com/_u/fabiohcnobre/#Intent;package=com.instagram.android;scheme=https;end How do I separate her so that I get one String link =…
-
0
votes1
answer2188
viewsQ: Instagram intent of the error in webview?
When I click open in the instagram app in my app. My webview gives the following error: Web page not available Unable to upload web page to address…
-
0
votes2
answers1178
viewsQ: How to use Scrollview and Linearlayout with full screen height?
I have my code: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"…
-
1
votes1
answer698
viewsQ: Error:Execution failed for task ':app:transformClassesWithDexForRelease' de Lcom/google/android/gms/Internal/zzbw; Would anyone know this error?
In my Android Studio is giving the following error when trying to make a store apk: Error:Execution failed for task ':app:transformClassesWithDexForDebug'.…
-
0
votes1
answer1006
viewsQ: Bug with.google.android.gms in ':app:processDebugGoogleServices'
My code is making that mistake: Error:Execution failed for task ':app:processDebugGoogleServices'. Please fix the version Conflict either by updating the version of the google-services plugin…
-
0
votes1
answer62
viewsQ: Keyboard opens when I call my Loginactivity, how to solve it?
Keyboard opens when I call my Loginactivity, how to solve this? This is my Loginactivity. package fabiohcnobre.jhotelcolonialdosnobres; import java.util.ArrayList; import java.util.List; import…
-
3
votes2
answers4128
viewsQ: How do I search (SELECT and WHERE) in the firebase database?
I have a database like this: { "message" : "Hello, World!", "reserva" : [ null, { "codreserva" : 123, "email" : "[email protected]", "status" : "check in" }, { "codreserva" : 124, "email" :…
-
0
votes2
answers234
viewsQ: I need to click the button twice to get the value
Someone knows what I did wrong, because I need to double-click the button to pull the value. package fabiohcnobre.jhotelcolonialdosnobres; import android.os.Bundle; import…