I am looking for a way to pass data from an activity onto a dialog box. I am trying to call showDialog(int);, however i don\'t see a way to pass any data to the
When you are doing showDialog(int) the Activity's onCreateDialog method is called. There you must create a dialog instance and return it, and it will be shown.
Then you are creating a dialog, you have a full access to your class' fields and can use values of them to adjust parameters and content of created dialog.