In iOS, there is a method to reload a viewcontroller
without killing it, e.g.
[self.view setNeedsDisplay];
For example, when you change the button title, it will reload automatically.
Are there any similar method in Android?
I found some link such as Reload activity in Android, but it need to finish()
it
startActivity(getIntent()); finish();