Searched refs:tabView (Results 1 – 6 of 6) sorted by relevance
255 final View tabView = mTabLayout.getChildAt(position); in animateToTab() local261 final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2; in animateToTab()287 final TabView tabView = new TabView(context, tab, forAdapter); in createTabView() local289 tabView.setBackgroundDrawable(null); in createTabView()290 tabView.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT, in createTabView()293 tabView.setFocusable(true); in createTabView()298 tabView.setOnClickListener(mTabClickListener); in createTabView()300 return tabView; in createTabView()305 TabView tabView = createTabView(mContext, tab, false); in addTab() local306 mTabLayout.addView(tabView, new LinearLayout.LayoutParams(0, in addTab()[all …]
247 public void setTabContainer(ScrollingTabContainerView tabView) { in setTabContainer() argument251 mTabContainer = tabView; in setTabContainer()252 if (tabView != null) { in setTabContainer()253 addView(tabView); in setTabContainer()254 final ViewGroup.LayoutParams lp = tabView.getLayoutParams(); in setTabContainer()257 tabView.setAllowCollapse(false); in setTabContainer()
442 public void setEmbeddedTabView(ScrollingTabContainerView tabView) { in setEmbeddedTabView() argument446 mTabView = tabView; in setEmbeddedTabView()447 if (tabView != null && mNavigationMode == ActionBar.NAVIGATION_MODE_TABS) { in setEmbeddedTabView()453 tabView.setAllowCollapse(true); in setEmbeddedTabView()
77 void setEmbeddedTabView(ScrollingTabContainerView tabView); in setEmbeddedTabView() argument
132 View tabView = mTabHost.getCurrentTabView(); in onChildTitleChanged() local133 if (tabView != null && tabView instanceof TextView) { in onChildTitleChanged()134 ((TextView) tabView).setText(title); in onChildTitleChanged()
1070 ViewGroup tabView = (ViewGroup)view; in getViewKey() local1071 if (tabView.getChildCount() > 0) { in getViewKey()1072 return context.getViewKey(tabView.getChildAt(0)); in getViewKey()