HomeSort by relevance Sort by last modified time
    Searched refs:tabView (Results 1 - 9 of 9) 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/support/v7/appcompat/src/android/support/v7/internal/widget/
ScrollingTabContainerView.java 204 final View tabView = mTabLayout.getChildAt(position);
210 final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2;
235 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) {
236 final TabView tabView = (TabView) mInflater.inflate(R.layout.abc_action_bar_tab, mTabLayout,
238 tabView.attach(this, tab, forAdapter);
241 tabView.setBackgroundDrawable(null);
242 tabView.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.FILL_PARENT
    [all...]
ActionBarContainer.java 187 public void setTabContainer(ScrollingTabContainerView tabView) {
191 mTabContainer = tabView;
192 if (tabView != null) {
193 addView(tabView);
194 final ViewGroup.LayoutParams lp = tabView.getLayoutParams();
197 tabView.setAllowCollapse(false);
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 249 final View tabView = mTabLayout.getChildAt(position);
255 final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2;
280 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) {
281 final TabView tabView = new TabView(getContext(), tab, forAdapter);
283 tabView.setBackgroundDrawable(null);
284 tabView.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT,
287 tabView.setFocusable(true)
    [all...]
ActionBarContainer.java 227 public void setTabContainer(ScrollingTabContainerView tabView) {
231 mTabContainer = tabView;
232 if (tabView != null) {
233 addView(tabView);
234 final ViewGroup.LayoutParams lp = tabView.getLayoutParams();
237 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 1768 milliseconds