Reload same Activity in Android
To reload the same activity in android use the following function.
private void relodeActivity()
{
finish();
startActivity(getIntent());
}
No comments: