I\'d like to restart an activitiy with the onResume() method. I thought i can use an Intent to achieve that, but that ends in an endless loop.
@Override prot
Just use this in your onResume()
@Override protected void onResume() { recreate(); }