Lines Matching refs:mTabHost
114 private TabHost mTabHost; field in IccLockSettings
261 if (mTabHost != null) { in restoreTabFocus()
262 mTabHost.setCurrentTabByTag(getTagForSlotId(mSlotId)); in restoreTabFocus()
299 mTabHost = (TabHost) view.findViewById(android.R.id.tabhost); in onCreateView()
303 mTabHost.setup(); in onCreateView()
304 mTabHost.clearAllTabs(); in onCreateView()
309 mTabHost.addTab(buildTabSpec(tag, in onCreateView()
315 mTabHost.setCurrentTabByTag(getTagForSlotId(mSlotId)); in onCreateView()
316 mTabHost.setOnTabChangedListener(mTabListener); in onCreateView()
417 if (mTabHost != null) { in onSaveInstanceState()
418 out.putString(CURRENT_TAB, mTabHost.getCurrentTabTag()); in onSaveInstanceState()
762 return new View(mTabHost.getContext());
767 return mTabHost.newTabSpec(tag).setIndicator(title).setContent( in buildTabSpec()