how to refresh activity intent in android code example
Example 1: refresh activity android
Activity.recreate(); //Trigger the onCreate method in the activity
Example 2: How to refresh activity without intent in android
finish();
overridePendingTransition( 0, 0);
startActivity(getIntent());
overridePendingTransition( 0, 0);