I have an application which starts a Remote Service in its first launched activity. Then, in another activity, the user can set the configuration of the application. Please
try this
public void reload() { Intent intent = getIntent(); overridePendingTransition(0, 0); intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); finish(); overridePendingTransition(0, 0); startActivity(intent); }