Using the function bellow in a activity class you can restart the current activity.
private void restartActivity() {
Intent intent = getIntent();
finish();
startActivity(intent);
}
Using the function bellow in a activity class you can restart the current activity.
private void restartActivity() {
Intent intent = getIntent();
finish();
startActivity(intent);
}