Lines Matching refs:mTabHost
116 private TabHost mTabHost; field in IccLockSettings
263 if (mTabHost != null) { in restoreTabFocus()
264 mTabHost.setCurrentTabByTag(getTagForSlotId(mSlotId)); in restoreTabFocus()
301 mTabHost = (TabHost) view.findViewById(android.R.id.tabhost); in onCreateView()
305 mTabHost.setup(); in onCreateView()
306 mTabHost.clearAllTabs(); in onCreateView()
311 mTabHost.addTab(buildTabSpec(tag, in onCreateView()
318 mTabHost.setCurrentTabByTag(getTagForSlotId(mSlotId)); in onCreateView()
319 mTabHost.setOnTabChangedListener(mTabListener); in onCreateView()
420 if (mTabHost != null) { in onSaveInstanceState()
421 out.putString(CURRENT_TAB, mTabHost.getCurrentTabTag()); in onSaveInstanceState()
755 return new View(mTabHost.getContext());
760 return mTabHost.newTabSpec(tag).setIndicator(title).setContent( in buildTabSpec()