Posts by Isac Leal • 21 points
2 posts
-
1
votes1
answer565
viewsA: How to pass parameters from one Fragment to another Fragment in the same Framelayout?
manage to solve the problem and I will share with you. To call another Fragment passing parameter use the code below: FragmentB fragmentB = new FragmentB(); Bundle bundle = new Bundle();…
-
1
votes1
answer565
viewsQ: How to pass parameters from one Fragment to another Fragment in the same Framelayout?
I have a main Activity that has A frameLayout. FrameLayout starts with Fragment. Fragmenta has a button that calls Fragmentb opening in the same frameLayout, replacing Fragmenta. How to pass…