Posts by Vitor720 • 16 points
2 posts
-
0
votes1
answer65
viewsA: Kotlin - Pass data between Fragments
As recommended by google, better use Safeargs to do this task. Inside your code would look something like this: override fun onBindViewHolder(holder: ViewHolder, position: Int) {…
-
0
votes1
answer144
viewsA: Image loading with the Picasso implementation on android
At the last quarter. into() you can pass a Callback type object as the second parameter and use onSuccess() and/or onerror() to know when the Picasso loading has ended. Example of into with callback…