Posts by Jorge Souza • 26 points
2 posts
-
0
votes2
answers460
viewsA: How to update Listview after deleting item?
public class ItensDoAdaptador extends ArrayAdapter<ItensDaLista> { public ItensDoAdaptador(Activity context, ArrayList<ItensDaLista> ten_drawer) { // Here, we initialize the…
androidanswered Jorge Souza 26 -
1
votes1
answer95
viewsA: Pass data between fragments and Activitys with radio button
Before Calling Your Fragment puts this: Bundle args = new Bundle(); args.putString("VarTpUsuario", VarTpUsuario); frag.setArguments(args); In Fragment, try this: Intent myIntent = getIntent();…
androidanswered Jorge Souza 26