Lines Matching full:tabhost
58 import android.widget.TabHost;
59 import android.widget.TabHost.OnTabChangeListener;
60 import android.widget.TabHost.TabSpec;
263 TabHost tabHost = (TabHost) findViewById(R.id.tabHost);
264 tabHost.setup();
266 TabSpec spec1 = tabHost.newTabSpec(tabName);
271 TabSpec spec2 = tabHost.newTabSpec(tabName);
276 TabSpec spec3 = tabHost.newTabSpec(tabName);
280 tabHost.addTab(spec1);
281 tabHost.addTab(spec2);
282 tabHost.addTab(spec3);
283 tabHost.setOnTabChangedListener(new OnTabChangeListener() {