我有一个应用程序,其中我在第一页有三个按钮(例如说A,B,C按钮)。当我点击这三个按钮中的任何一个时,他们将导航到相同的tabActivity页面。默认情况下,第一个选项卡被选中。但我想要的是,当我点击A按钮时,第一个选项卡应该被选中。当我点击B按钮时,应该选择第二个标签。当我点击C按钮时,第三个标签应该被选中。我不知道该怎么做。任何人都可以帮助我吗?
提前致谢...
答案 0 :(得分:2)
试试这个,
点击按钮A
tabHost.setCurrentTab(0);
点击按钮B
tabHost.setCurrentTab(1);
点击按钮C
tabHost.setCurrentTab(2);
答案 1 :(得分:1)
在你的活动课中尝试这个,在我的应用程序中工作得很好。
Resources res = getResources(); // Resource object to get Drawables
TabHost tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec; // Resusable TabSpec for each tab
Intent intent; // Reusable Intent for each tab
// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, ArtistsActivity.class);
// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("artists").setIndicator("Artists",
res.getDrawable(R.drawable.ic_tab_artists))
.setContent(intent);
tabHost.addTab(spec);
// Do the same for the other tabs
intent = new Intent().setClass(this, AlbumsActivity.class);
spec = tabHost.newTabSpec("albums").setIndicator("Albums",
res.getDrawable(R.drawable.ic_tab_albums))
.setContent(intent);
tabHost.addTab(spec);
intent = new Intent().setClass(this, SongsActivity.class);
spec = tabHost.newTabSpec("songs").setIndicator("Songs",
res.getDrawable(R.drawable.ic_tab_songs)).setContent(intent);
tabHost.addTab(spec);
}
希望它可以帮到你