HomeSort by relevance Sort by last modified time
    Searched defs:tabView (Results 1 - 5 of 5) 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);
  /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...]
  /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...]
  /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);
  /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));

Completed in 2875 milliseconds