Tabs on android 4.0 woes
问题 I'm trying to use tabs on android 2.2 - 4.0. I've extended this demo: http://developer.android.com/resources/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentTabs.html with: TabSpec ts = mTabHost.newTabSpec("randomTab"); Intent intent = new Intent(); intent.setClass(this, FragActiv.class); ts.setContent(intent); ts.setIndicator("randomTab"); mTabManager.addTab(ts, FragActiv.class, new Bundle()); But I don't know what to add to onTabChanged , where all the magic happens in