Posts by Tiago Oliveira • 115 points
4 posts
-
1
votes1
answer55
viewsQ: How to use multiple languages
I don’t have much experience with Node.js, and I needed to generate several signed links, I have this block of code that works well. bucket.file("test_users/xxxxx/avatar/thumbnail.jpeg")…
-
0
votes1
answer33
viewsQ: SQL: Sort by columns from another table
I have a user tabala, and another with the respective scores, I need to select from the scoreboard only users who live in a certain country. The country is defended in the users table, each table…
-
0
votes1
answer1745
viewsA: Pass data from an Activity to a Fragment
You can use a Bundle MapsFragment mapsFragmet = new MapsFragment(); Bundle data = new Bundle(); data.put("chave","valor"); mapsFragment.setArguments(data); In Mapsfragment uses Bundle data =…
-
0
votes0
answers60
viewsQ: Attempt to invoke virtual method on a null Object Reference Fragment Asynctask
I’ve been at this for days and I still don’t understand why this mistake, I have a Asynctask who takes a Urls of a database I want to take the url and define the imageView gives an error on this…