hi.. i have a tab activity in my main actitvity,from it first how can i override the ontabchange listener in another activity. view
TabHost tabHost = getTabHost();
tabHost.addTab(tabHost.newTabSpec("tab1").setContent(
new Intent(this, Bru_Press_MostRecent.class)).setIndicator(
prepareTabView("Insider Extra",
R.drawable.most_recent_selector)));
tabHost.addTab(tabHost.newTabSpec("tab2").setContent(
new Intent(this, Bru_Press_BrowseBy.class))
.setIndicator(
prepareTabView("Browse By",
R.drawable.browse_by_selector)));
when i choose second tab it moves to corresponding activity to show listview with content and again when 1 list onclick i moved to next 2 listview at the time the tab i set visible in bottom, when i click again it needs to move previous view but stays back in 2 list view alone,i need it to move 1st listview,how can i do it.
Thanks in advance.