on other issues, I pulled out the most effective ways to do this:
finish();startActivity(getIntent());
OR
// Refresh main activity upon close of dialog box Intent refresh =new Intent(this, ActivityWeAreIn.class); startActivity(refresh);
Note. This also works with Activity objects or fragments using getActivity ()
source share