I need a little help with refreshing one of my activities in my application. I\'m using tab host activity and connecting to web service and downloading some data from one of my
Override onRestart() method inside activity you want to refresh, and recreate the activity
onRestart()
@Override protected void onRestart() { super.onRestart(); this.recreate(); }