Чтобы установить для вкладки значение Avtivity
, необходимо создать явный Intent
и передать его в методе TabHost.TabSpec.setContent(Intent intent)
.
Как-то так должно работать ...
// This code assumes tabHost is a reference to your TabHost widget
// and that you have created the tag and indicator variables
TabHost.TabSpec spec;
Intent intent;
intent = new Intent(this, MyPreferenceActivity.class);
spec = tabHost.newTabSpec(tag).setIndicator(indicator).setContent(intent);
tabHost.addTab(spec);