Searched refs:newTabSpec (Results 1 – 3 of 3) sorted by relevance
28 TabHost.TabSpec tabSpec = tabHost.newTabSpec("Foo"); in newTabSpec_shouldMakeATabSpec()37 TabHost.TabSpec foo = tabHost.newTabSpec("Foo").setIndicator(fooView); in shouldAddTabsToLayoutWhenAddedToHost()40 TabHost.TabSpec bar = tabHost.newTabSpec("Bar").setIndicator(barView); in shouldAddTabsToLayoutWhenAddedToHost()52 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldReturnTabSpecsByTag()53 TabHost.TabSpec bar = tabHost.newTabSpec("Bar"); in shouldReturnTabSpecsByTag()54 TabHost.TabSpec baz = tabHost.newTabSpec("Baz"); in shouldReturnTabSpecsByTag()69 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldFireTheTabChangeListenerWhenCurrentTabIsSet()70 TabHost.TabSpec bar = tabHost.newTabSpec("Bar"); in shouldFireTheTabChangeListenerWhenCurrentTabIsSet()71 TabHost.TabSpec baz = tabHost.newTabSpec("Baz"); in shouldFireTheTabChangeListenerWhenCurrentTabIsSet()89 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldFireTheTabChangeListenerWhenTheCurrentTabIsSetByTag()[all …]
33 TabHost.TabSpec spec = new TabHost(null).newTabSpec("foo"); in shouldGetAndSetTheIndicator()42 TabHost.TabSpec spec = new TabHost(null).newTabSpec("foo"); in shouldGetAndSetTheIntentContent()53 TabHost.TabSpec spec = new TabHost(null).newTabSpec("foo") in shouldGetAndSetTheIndicatorLabel()61 TabHost.TabSpec spec = new TabHost(null).newTabSpec("foo") in shouldGetAndSetTheIndicatorLabelAndIcon()71 TabHost.TabSpec foo = new TabHost(null).newTabSpec("Foo").setContent( in shouldSetTheContentView()89 TabHost.TabSpec foo = new TabHost(null).newTabSpec("Foo") in shouldSetTheContentViewId()
30 public android.widget.TabHost.TabSpec newTabSpec(java.lang.String tag) { in newTabSpec() method in ShadowTabHost