Home
last modified time | relevance | path

Searched refs:tabView (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DScrollingTabContainerView.java255 final View tabView = mTabLayout.getChildAt(position); in animateToTab() local
261 final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2; in animateToTab()
287 final TabView tabView = new TabView(context, tab, forAdapter); in createTabView() local
289 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() local
306 mTabLayout.addView(tabView, new LinearLayout.LayoutParams(0, in addTab()
[all …]
DActionBarContainer.java247 public void setTabContainer(ScrollingTabContainerView tabView) { in setTabContainer() argument
251 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()
DToolbarWidgetWrapper.java442 public void setEmbeddedTabView(ScrollingTabContainerView tabView) { in setEmbeddedTabView() argument
446 mTabView = tabView; in setEmbeddedTabView()
447 if (tabView != null && mNavigationMode == ActionBar.NAVIGATION_MODE_TABS) { in setEmbeddedTabView()
453 tabView.setAllowCollapse(true); in setEmbeddedTabView()
DDecorToolbar.java77 void setEmbeddedTabView(ScrollingTabContainerView tabView); in setEmbeddedTabView() argument
/frameworks/base/core/java/android/app/
DTabActivity.java132 View tabView = mTabHost.getCurrentTabView(); in onChildTitleChanged() local
133 if (tabView != null && tabView instanceof TextView) { in onChildTitleChanged()
134 ((TextView) tabView).setText(title); in onChildTitleChanged()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DRenderSessionImpl.java1070 ViewGroup tabView = (ViewGroup)view; in getViewKey() local
1071 if (tabView.getChildCount() > 0) { in getViewKey()
1072 return context.getViewKey(tabView.getChildAt(0)); in getViewKey()