Posts by william silva • 21 points
5 posts
-
0
votes1
answer67
viewsA: Receive Radiobutton value in Recyclerview
I had a similar problem, only I couldn’t find anything about it. So to solve I decided to make the user answer one question at a time, sort the questions by increasing numbers in the database, then…
-
1
votes1
answer467
viewsA: Display data list in order of date. Firebase
After Child you put . orderByChild("") database = ConfiguracaoFirebase.getDatabase().child("comentarios").orderByChild("Referência_da_data_no_firebase");
androidanswered william silva 21 -
1
votes1
answer31
viewsA: Visual error in Webview
I managed to solve personal, just add as true the wideviewport: WebSettings ws = webView.getSettings(); ws.setUseWideViewPort(true);`
-
0
votes1
answer31
viewsQ: Visual error in Webview
I’m using a webview to expose my site, but on the sides it has two white bars as in the photo. Code: @Override protected void onCreate(Bundle savedInstanceState) {…
-
0
votes0
answers34
viewsQ: Parameters between Fragment and Activity
I have an Activity with a Fragment inside, but I want to pass the parameters present in the Fragment when changing from Activity, what I do?