In my application I have a form the user fills in. Pressing \"save\" the data will be saved to the local database. I want to add a confirm dialog for the user to review the deta
Perhaps not the most pretty/elegant method, but you could make those bits of information public static
and then reference them from the dialog.
In the activity/fragment where you gather the data:
public static String A
public static String B
public static String C
And grab it in the dialog fragment like so (apologies if I'm explaining something you already know):
your_activity/fragment_classname.A
your_activity/fragment_classname.B
your_activity/fragment_classname.C