所以我的标签布局正如Android example:
中所示super.onCreate(savedInstanceState);
setContentView(R.layout.main);
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, ArtistActivity.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_artists)).setContent(intent);
tabHost.addTab(spec);
intent = new Intent().setClass(this, SongsActivity.class);
spec = tabHost.newTabSpec("songs").setIndicator("Songs", res.getDrawable(R.drawable.ic_tab_artists)).setContent(intent);
tabHost.addTab(spec);
现在,在标签的一个活动中,我宣布了一个按钮,并希望引入一个新视图。如果我创建一个新意图,它将推送一个新视图,标签就消失了。是否可以使用新视图切换当前选定的视图?
答案 0 :(得分:3)
是的,它非常有可能..你必须为此目的使用ActivityGroup ..
而不是向TabHost添加活动..您必须添加ActivityGroup .. 每个活动组都有其活动..
这很容易实现
我有同样的问题,但完全得到了解决方案检查以下链接
http://ericharlow.blogspot.com/2010/09/experience-multiple-android-activities.html
它是我的解决方案。希望它也会帮助你