HomeSort by relevance Sort by last modified time
    Searched refs:newTabSpec (Results 1 - 19 of 19) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/view/
Tabs3.java 35 tabHost.addTab(tabHost.newTabSpec("tab1")
39 tabHost.addTab(tabHost.newTabSpec("tab2")
45 tabHost.addTab(tabHost.newTabSpec("tab3")
Tabs1.java 40 tabHost.addTab(tabHost.newTabSpec("tab1")
43 tabHost.addTab(tabHost.newTabSpec("tab3")
46 tabHost.addTab(tabHost.newTabSpec("tab3")
Tabs2.java 40 tabHost.addTab(tabHost.newTabSpec("tab1")
43 tabHost.addTab(tabHost.newTabSpec("tab2")
46 tabHost.addTab(tabHost.newTabSpec("tab3")
Tabs6.java 39 tabHost.addTab(tabHost.newTabSpec("tab1")
42 tabHost.addTab(tabHost.newTabSpec("tab2")
45 tabHost.addTab(tabHost.newTabSpec("tab3")
Tabs5.java 42 tabHost.addTab(tabHost.newTabSpec(name)
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowTabHostTest.java 35 TabHost.TabSpec tabSpec = tabHost.newTabSpec("Foo");
44 TabHost.TabSpec foo = tabHost.newTabSpec("Foo").setIndicator(fooView);
47 TabHost.TabSpec bar = tabHost.newTabSpec("Bar").setIndicator(barView);
59 TabHost.TabSpec foo = tabHost.newTabSpec("Foo");
60 TabHost.TabSpec bar = tabHost.newTabSpec("Bar");
61 TabHost.TabSpec baz = tabHost.newTabSpec("Baz");
76 TabHost.TabSpec foo = tabHost.newTabSpec("Foo");
77 TabHost.TabSpec bar = tabHost.newTabSpec("Bar");
78 TabHost.TabSpec baz = tabHost.newTabSpec("Baz");
96 TabHost.TabSpec foo = tabHost.newTabSpec("Foo")
    [all...]
ShadowTabSpecTest.java 34 TabHost.TabSpec spec = new TabHost(context).newTabSpec("foo");
43 TabHost.TabSpec spec = new TabHost(context).newTabSpec("foo");
53 new TabHost(context).newTabSpec("foo").setContent(R.layout.main).setIndicator("labelText");
63 .newTabSpec("foo")
76 .newTabSpec("Foo")
93 TabHost.TabSpec foo = new TabHost(context).newTabSpec("Foo").setContent(R.id.title);
  /cts/tests/app/app/src/android/app/stubs/
MockTabActivity.java 42 tabHost.addTab(tabHost.newTabSpec(TAB1).setIndicator(TAB1)
45 tabHost.addTab(tabHost.newTabSpec(TAB2).setIndicator(TAB2)
48 tabHost.addTab(tabHost.newTabSpec(TAB3).setIndicator(TAB3).setContent(
LaunchpadTabActivity.java 37 final TabHost.TabSpec ts = th.newTabSpec("1");
  /cts/tests/tests/widget/src/android/widget/cts/
TabHost_TabSpecTest.java 74 TabHost.TabSpec tabSpec = mTabHost.newTabSpec(TAG_TAB2);
86 tabSpec = mTabHost.newTabSpec("tab 3");
98 TabHost.TabSpec tabSpec = mTabHost.newTabSpec(TAG_TAB2);
115 tabSpec = mTabHost.newTabSpec("tab 3");
126 tabSpec = mTabHost.newTabSpec("tab 4");
137 tabSpec = mTabHost.newTabSpec("tab 5");
152 TabHost.TabSpec tabSpec2 = mTabHost.newTabSpec("tab spec 2");
162 TabHost.TabSpec tabSpec3 = mTabHost.newTabSpec("tab spec 3");
174 TabHost.TabSpec tabSpec2 = mTabHost.newTabSpec("tab spec 2");
183 TabHost.TabSpec tabSpec3 = mTabHost.newTabSpec("tab spec 3")
    [all...]
TabHostTest.java 88 assertNotNull(tabHost.newTabSpec(TAG_TAB2));
95 tabHost.newTabSpec(null);
121 TabSpec tabSpec = tabHost.newTabSpec(TAG_TAB1);
156 TabSpec tabSpec = tabHost.newTabSpec(TAG_TAB1);
176 TabSpec tabSpec = tabHost.newTabSpec(TAG_TAB2);
190 tabHost.addTab(tabHost.newTabSpec("tab 3"));
197 tabHost.addTab(tabHost.newTabSpec("tab 3").setIndicator("tab 3"));
204 tabHost.addTab(tabHost.newTabSpec("tab 3").setContent(new MyTabContentFactoryText()));
220 tabHost.addTab(tabHost.newTabSpec(TAG_TAB1).setIndicator(TAG_TAB1).setContent(tcf));
221 tabHost.addTab(tabHost.newTabSpec(TAG_TAB2).setIndicator(TAG_TAB2).setContent(tcf))
    [all...]
TabHostCtsActivity.java 43 tabHost.addTab(tabHost.newTabSpec(INITIAL_TAB_TAG)
PointerIconTest.java 94 return tabHost.newTabSpec(label)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentTabsFragment.java 51 mTabManager.addTab(host.newTabSpec("result").setIndicator("Result"),
53 mTabManager.addTab(host.newTabSpec("contacts").setIndicator("Contacts"),
55 mTabManager.addTab(host.newTabSpec("apps").setIndicator("Apps"),
57 mTabManager.addTab(host.newTabSpec("throttle").setIndicator("Throttle"),
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelperEclair.java 69 spec = mTabHost.newTabSpec(tag).setIndicator(tab.getText(), tab.getIcon());
71 spec = mTabHost.newTabSpec(tag).setIndicator(tab.getText());
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTabHost.java 30 protected android.widget.TabHost.TabSpec newTabSpec(java.lang.String tag) {
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
MainActivity.java 267 TabSpec spec1 = tabHost.newTabSpec(tabName);
272 TabSpec spec2 = tabHost.newTabSpec(tabName);
277 TabSpec spec3 = tabHost.newTabSpec(tabName);
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
MainActivity.java 267 TabSpec spec1 = tabHost.newTabSpec(tabName);
272 TabSpec spec2 = tabHost.newTabSpec(tabName);
277 TabSpec spec3 = tabHost.newTabSpec(tabName);
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
MainActivity.java 266 TabSpec spec1 = tabHost.newTabSpec(tabName);
271 TabSpec spec2 = tabHost.newTabSpec(tabName);
276 TabSpec spec3 = tabHost.newTabSpec(tabName);

Completed in 914 milliseconds