Searched refs:tabSpec (Results 1 – 2 of 2) sorted by relevance
37 public void addTab(android.widget.TabHost.TabSpec tabSpec) { in addTab() argument38 tabSpecs.add(tabSpec); in addTab()39 View indicatorAsView = shadowOf(tabSpec).getIndicatorAsView(); in addTab()56 TabSpec tabSpec = tabSpecs.get(x); in setCurrentTabByTag() local57 if (tabSpec.getTag().equals(tag)) { in setCurrentTabByTag()115 for (TabHost.TabSpec tabSpec : tabSpecs) { in getSpecByTag()116 if (tag.equals(tabSpec.getTag())) { in getSpecByTag()117 return tabSpec; in getSpecByTag()
28 TabHost.TabSpec tabSpec = tabHost.newTabSpec("Foo"); in newTabSpec_shouldMakeATabSpec() local29 assertThat(tabSpec.getTag(), equalTo("Foo")); in newTabSpec_shouldMakeATabSpec()