如何实现?
就像图中的效果
------解决方案--------------------
mHost = getTabHost();
Intent localIntent1 = new Intent(this, MyTab.class);
mHost.addTab(mHost
.newTabSpec("home_tab")
.setIndicator(getText(R.string.main_home),
getResources().getDrawable(R.drawable.icon_1_n))
.setContent(localIntent1));
------解决方案--------------------
跳转页面时,TAB的ID没有变就OK
------解决方案--------------------
使用ViewFlipper控件,此控件可添加多个layout,并控制跳转,百度谷歌查一下吧