Home | History | Annotate | Download | only in launcher2

Lines Matching full:tabhost

24 import android.widget.TabHost;
73 * Private helper to get the parent TabHost in the view hiearchy.
75 private static TabHost findTabHostParent(View v) {
77 while (p != null && !(p instanceof TabHost)) {
80 return (TabHost) p;
87 final TabHost tabHost = findTabHostParent(v);
88 final ViewGroup contents = tabHost.getTabContentView();
89 final View shop = tabHost.findViewById(R.id.market_button);
138 final TabHost tabHost = findTabHostParent(container);
139 final TabWidget tabs = tabHost.getTabWidget();
298 final TabHost tabHost = findTabHostParent(container);
299 final TabWidget tabs = tabHost.getTabWidget();
443 final TabHost tabHost = findTabHostParent(parent);
444 final ViewGroup contents = tabHost.getTabContentView();
468 tabHost.findViewById(v.getNextFocusRightId()).requestFocus();