HomeSort by relevance Sort by last modified time
    Searched refs:tabView (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/android/app/
TabActivity.java 149 View tabView = mTabHost.getCurrentTabView();
150 if (tabView != null && tabView instanceof TextView) {
151 ((TextView) tabView).setText(title);
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_window_controller.h 37 @class TabView;
81 - (TabWindowController*)detachTabToNewWindow:(TabView*)tabView;
86 - (void)insertPlaceholderForTab:(TabView*)tab
114 - (BOOL)isTabFullyVisible:(TabView*)tab;
156 - (BOOL)isTabDraggable:(NSView*)tabView;
157 - (void)setTab:(NSView*)tabView isDraggable:(BOOL)draggable;
tab_controller.h 26 @class TabView;
85 // The view associated with this controller, pre-casted as a TabView
86 - (TabView*)tabView;
88 // Closes the associated TabView by relaying the message to |target_| to
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 240 final View tabView = mTabLayout.getChildAt(position);
246 final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2;
271 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) {
272 final TabView tabView = new TabView(getContext(), tab, forAdapter);
274 tabView.setBackgroundDrawable(null);
275 tabView.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT,
278 tabView.setFocusable(true)
    [all...]
ActionBarContainer.java 129 public void setTabContainer(ScrollingTabContainerView tabView) {
133 mTabContainer = tabView;
134 if (tabView != null) {
135 addView(tabView);
136 final ViewGroup.LayoutParams lp = tabView.getLayoutParams();
139 tabView.setAllowCollapse(false);
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizeTabHost.java 108 TextView tabView;
111 tabView = (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
112 tabView.setText(label);
113 tabView.setContentDescription(label);
114 addTab(newTabSpec(APPS_TAB_TAG).setIndicator(tabView).setContent(contentFactory));
116 tabView = (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
117 tabView.setText(label);
118 tabView.setContentDescription(label);
119 addTab(newTabSpec(WIDGETS_TAB_TAG).setIndicator(tabView).setContent(contentFactory));
  /frameworks/base/core/java/android/widget/
TabWidget.java 408 View tabView = getChildTabViewAt(mSelectedTab);
409 if (tabView != null && tabView.getVisibility() == VISIBLE) {
410 return tabView.dispatchPopulateAccessibilityEvent(event);

Completed in 367 milliseconds