Searched refs:tabHost (Results 1 – 4 of 4) sorted by relevance
87 final TabHost tabHost = findTabHostParent(v); in handleAppsCustomizeTabKeyEvent() local88 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() local139 final TabWidget tabs = tabHost.getTabWidget(); in handlePagedViewGridLayoutWidgetKeyEvent()298 final TabHost tabHost = findTabHostParent(container); in handleAppsCustomizeKeyEvent() local299 final TabWidget tabs = tabHost.getTabWidget(); in handleAppsCustomizeKeyEvent()443 final TabHost tabHost = findTabHostParent(parent); in handleTabKeyEvent() local444 final ViewGroup contents = tabHost.getTabContentView(); in handleTabKeyEvent()468 tabHost.findViewById(v.getNextFocusRightId()).requestFocus(); in handleTabKeyEvent()
975 AppsCustomizeTabHost tabHost = getTabHost(); in updateCurrentTab() local976 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 …]
122 TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost); in startInstallConfirm() local123 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()
76 public TabsAdapter(Activity activity, TabHost tabHost, ViewPager pager) { in TabsAdapter() argument78 mTabHost = tabHost; in TabsAdapter()