How to refresh the webview which is called from Android tabview after once called, for example if i called an activity that is connected with the tabview then it does not refreshes once its called. Is there any way to do that,,
Code:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
TabHost tabHost = getTabHost();
tabHost.addTab(createTab1(aActivity.class, "a", "", R.drawable.ic_tab_a));
tabHost.addTab(createTab2(bActivity.class, "b", "", R.drawable.ic_tab_b));
tabHost.addTab(createTab3(cActivity.class, "c", "", R.drawable.ic_tab_c));
tabHost.setCurrentTab(0);
}