Home
last modified time | relevance | path

Searched refs:tabHost (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
DFocusHelper.java87 final TabHost tabHost = findTabHostParent(v); in handleAppsCustomizeTabKeyEvent() local
88 final ViewGroup contents = tabHost.getTabContentView(); in handleAppsCustomizeTabKeyEvent()
89 final View shop = tabHost.findViewById(R.id.market_button); in handleAppsCustomizeTabKeyEvent()
138 final TabHost tabHost = findTabHostParent(container); in handlePagedViewGridLayoutWidgetKeyEvent() local
139 final TabWidget tabs = tabHost.getTabWidget(); in handlePagedViewGridLayoutWidgetKeyEvent()
298 final TabHost tabHost = findTabHostParent(container); in handleAppsCustomizeKeyEvent() local
299 final TabWidget tabs = tabHost.getTabWidget(); in handleAppsCustomizeKeyEvent()
443 final TabHost tabHost = findTabHostParent(parent); in handleTabKeyEvent() local
444 final ViewGroup contents = tabHost.getTabContentView(); in handleTabKeyEvent()
468 tabHost.findViewById(v.getNextFocusRightId()).requestFocus(); in handleTabKeyEvent()
DAppsCustomizePagedView.java975 AppsCustomizeTabHost tabHost = getTabHost(); in updateCurrentTab() local
976 if (tabHost != null) { in updateCurrentTab()
977 String tag = tabHost.getCurrentTabTag(); in updateCurrentTab()
980 !tag.equals(tabHost.getTabTagForContentType(ContentType.Widgets))) { in updateCurrentTab()
981 tabHost.setCurrentTabFromContent(ContentType.Widgets); in updateCurrentTab()
983 !tag.equals(tabHost.getTabTagForContentType(ContentType.Applications))) { in updateCurrentTab()
984 tabHost.setCurrentTabFromContent(ContentType.Applications); in updateCurrentTab()
1604 AppsCustomizeTabHost tabHost = getTabHost();
1605 String tag = tabHost.getCurrentTabTag();
1607 if (!tag.equals(tabHost.getTabTagForContentType(ContentType.Applications))) {
[all …]
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
DPackageInstallerActivity.java122 TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost); in startInstallConfirm() local
123 tabHost.setup(); in startInstallConfirm()
124 tabHost.setVisibility(View.VISIBLE); in startInstallConfirm()
126 TabsAdapter adapter = new TabsAdapter(this, tabHost, viewPager); in startInstallConfirm()
161 adapter.addTab(tabHost.newTabSpec(TAB_ID_NEW).setIndicator( in startInstallConfirm()
177 adapter.addTab(tabHost.newTabSpec(TAB_ID_ALL).setIndicator( in startInstallConfirm()
193 tabHost.setVisibility(View.INVISIBLE); in startInstallConfirm()
DTabsAdapter.java76 public TabsAdapter(Activity activity, TabHost tabHost, ViewPager pager) { in TabsAdapter() argument
78 mTabHost = tabHost; in TabsAdapter()