Lines Matching refs:tabHost
25 import android.widget.TabHost;
72 * Private helper to get the parent TabHost in the view hiearchy.
74 private static TabHost findTabHostParent(View v) {
76 while (p != null && !(p instanceof TabHost)) {
79 return (TabHost) p;
86 final TabHost tabHost = findTabHostParent(v);
87 final ViewGroup contents = tabHost.getTabContentView();
88 final View shop = tabHost.findViewById(R.id.market_button);
137 final TabHost tabHost = findTabHostParent(container);
138 final TabWidget tabs = tabHost.getTabWidget();
297 final TabHost tabHost = findTabHostParent(container);
298 final TabWidget tabs = tabHost.getTabWidget();
442 final TabHost tabHost = findTabHostParent(parent);
443 final ViewGroup contents = tabHost.getTabContentView();
467 tabHost.findViewById(v.getNextFocusRightId()).requestFocus();