Searched refs:mTabHost (Results 1 - 6 of 6) sorted by relevance

/packages/apps/PackageInstaller/src/com/android/packageinstaller/
H A DTabsAdapter.java45 private final TabHost mTabHost; field in class:TabsAdapter
78 mTabHost = tabHost;
80 mTabHost.setOnTabChangedListener(this);
91 mTabHost.addTab(tabSpec);
119 int position = mTabHost.getCurrentTab();
134 TabWidget widget = mTabHost.getTabWidget();
137 mTabHost.setCurrentTab(position);
/packages/apps/Settings/src/com/android/settings/
H A DIccLockSettings.java99 private TabHost mTabHost; field in class:IccLockSettings
216 mTabHost = (TabHost) view.findViewById(android.R.id.tabhost);
220 mTabHost.setup();
221 mTabHost.setOnTabChangedListener(mTabListener);
222 mTabHost.clearAllTabs();
227 mTabHost.addTab(buildTabSpec(String.valueOf(i),
520 return new View(mTabHost.getContext());
525 return mTabHost.newTabSpec(tag).setIndicator(title).setContent(
H A DTrustedCredentialsSettings.java148 private TabHost mTabHost; field in class:TrustedCredentialsSettings
213 mTabHost = (TabHost) inflater.inflate(R.layout.trusted_credentials, parent, false);
214 mTabHost.setup();
220 mTabHost.setCurrentTabByTag(Tab.USER.mTag);
222 return mTabHost;
267 TabHost.TabSpec systemSpec = mTabHost.newTabSpec(tab.mTag)
270 mTabHost.addTab(systemSpec);
277 final ViewGroup contentView = (ViewGroup) mTabHost.findViewById(tab.mContentView);
677 View content = mTabHost.getTabContentView();
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DSimStatus.java112 private TabHost mTabHost; field in class:SimStatus
171 mTabHost = (TabHost) view.findViewById(android.R.id.tabhost);
175 mTabHost.setup();
176 mTabHost.setOnTabChangedListener(mTabListener);
177 mTabHost.clearAllTabs();
180 mTabHost.addTab(buildTabSpec(String.valueOf(i),
471 return new View(mTabHost.getContext());
476 return mTabHost.newTabSpec(tag).setIndicator(title).setContent(
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
H A DEmojiPalettesView.java85 private TabHost mTabHost; field in class:EmojiPalettesView
165 mTabHost = (TabHost)findViewById(R.id.emoji_category_tabhost);
166 mTabHost.setup();
169 addTab(mTabHost, properties.mCategoryId);
171 mTabHost.setOnTabChangedListener(this);
172 final TabWidget tabWidget = mTabHost.getTabWidget();
434 if (force || mTabHost.getCurrentTab() != newTabId) {
435 mTabHost.setCurrentTab(newTabId);
/packages/services/Telephony/src/com/android/phone/
H A DMobileNetworkSettings.java237 // We assume the the value returned by mTabHost.getCurrentTab() == slotId
238 private TabHost mTabHost; field in class:MobileNetworkSettings.MobileNetworkFragment
459 currentTab = mTabHost != null ? mTabHost.getCurrentTab() : 0;
461 mTabHost = (TabHost) getActivity().findViewById(android.R.id.tabhost);
462 mTabHost.setup();
485 mTabHost.addTab(buildTabSpec(String.valueOf(simSlotIndex), tabName));
488 mTabHost.setOnTabChangedListener(mTabListener);
489 mTabHost.setCurrentTab(currentTab);
495 if (mTabHost !
[all...]

Completed in 148 milliseconds