When the user taps a menu item I need to create a new Activity. This Activity loads a lot of data then shows a map and takes some seconds to be shown. How can I use ProgressDialog from an activity to another? I actually cannot see it if I call
ProgressDialog dialog = ProgressDialog.show(this, "", "Loading. Please wait...", true);
Thanks in advance.