I am having an issue with using TabHost in a new Intent of type TabActivity which I hope you can point me in the right direction. Funnily it works fine when I try to view it
I have previously constructed tabhosts with an id of android:id="@+id/tabhost". Does this work for you?
android:id="@+id/tabhost"
You could also consider constructing your tab view programmatically:
TabHost t = getTabHost(); TabSpec tab = t.newTabSpec(label) .setIndicator(label, icon) .setContent(intent); t.addTab(tab);