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 244 final View tabView = mTabLayout.getChildAt(position);
250 final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2;
275 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) {
276 final TabView tabView = new TabView(getContext(), tab, forAdapter);
278 tabView.setBackgroundDrawable(null);
279 tabView.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT,
282 tabView.setFocusable(true)
    [all...]
ActionBarContainer.java 216 public void setTabContainer(ScrollingTabContainerView tabView) {
220 mTabContainer = tabView;
221 if (tabView != null) {
222 addView(tabView);
223 final ViewGroup.LayoutParams lp = tabView.getLayoutParams();
226 tabView.setAllowCollapse(false);
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizeTabHost.java 118 TextView tabView;
121 tabView = (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
122 tabView.setText(label);
123 tabView.setContentDescription(label);
124 addTab(newTabSpec(APPS_TAB_TAG).setIndicator(tabView).setContent(contentFactory));
126 tabView = (TextView) mLayoutInflater.inflate(R.layout.tab_widget_indicator, tabs, false);
127 tabView.setText(label);
128 tabView.setContentDescription(label);
129 addTab(newTabSpec(WIDGETS_TAB_TAG).setIndicator(tabView).setContent(contentFactory));
  /frameworks/base/core/java/android/widget/
TabWidget.java 406 View tabView = getChildTabViewAt(mSelectedTab);
407 if (tabView != null && tabView.getVisibility() == VISIBLE) {
408 return tabView.dispatchPopulateAccessibilityEvent(event);

Completed in 244 milliseconds