Home
last modified time | relevance | path

Searched refs:newTabSpec (Results 1 – 3 of 3) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTabHostTest.java35 TabHost.TabSpec tabSpec = tabHost.newTabSpec("Foo"); in newTabSpec_shouldMakeATabSpec()
44 TabHost.TabSpec foo = tabHost.newTabSpec("Foo").setIndicator(fooView); in shouldAddTabsToLayoutWhenAddedToHost()
47 TabHost.TabSpec bar = tabHost.newTabSpec("Bar").setIndicator(barView); in shouldAddTabsToLayoutWhenAddedToHost()
59 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldReturnTabSpecsByTag()
60 TabHost.TabSpec bar = tabHost.newTabSpec("Bar"); in shouldReturnTabSpecsByTag()
61 TabHost.TabSpec baz = tabHost.newTabSpec("Baz"); in shouldReturnTabSpecsByTag()
76 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldFireTheTabChangeListenerWhenCurrentTabIsSet()
77 TabHost.TabSpec bar = tabHost.newTabSpec("Bar"); in shouldFireTheTabChangeListenerWhenCurrentTabIsSet()
78 TabHost.TabSpec baz = tabHost.newTabSpec("Baz"); in shouldFireTheTabChangeListenerWhenCurrentTabIsSet()
96 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldFireTheTabChangeListenerWhenTheCurrentTabIsSetByTag()
[all …]
DShadowTabSpecTest.java34 TabHost.TabSpec spec = new TabHost(context).newTabSpec("foo"); in shouldGetAndSetTheIndicator()
43 TabHost.TabSpec spec = new TabHost(context).newTabSpec("foo"); in shouldGetAndSetTheIntentContent()
53 new TabHost(context).newTabSpec("foo").setContent(R.layout.main).setIndicator("labelText"); in shouldGetAndSetTheIndicatorLabel()
63 .newTabSpec("foo") in shouldGetAndSetTheIndicatorLabelAndIcon()
76 .newTabSpec("Foo") in shouldSetTheContentView()
93 TabHost.TabSpec foo = new TabHost(context).newTabSpec("Foo").setContent(R.id.title); in shouldSetTheContentViewId()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTabHost.java30 protected android.widget.TabHost.TabSpec newTabSpec(java.lang.String tag) { in newTabSpec() method in ShadowTabHost