HomeSort by relevance Sort by last modified time
    Searched defs:TabView (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 241 final View tabView = mTabLayout.getChildAt(position);
247 final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2;
272 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) {
273 final TabView tabView = new TabView(getContext(), tab, forAdapter);
275 tabView.setBackgroundDrawable(null);
276 tabView.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT,
279 tabView.setFocusable(true)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
TabBar.java 67 private Map<Tab, TabView> mTabMap;
100 mTabMap = new HashMap<Tab, TabView>();
150 TabView tv = buildTabView(tab);
208 } else if (view instanceof TabView) {
209 final Tab tab = ((TabView) view).mTab;
223 private TabView buildTabView(Tab tab) {
224 TabView tabview = new TabView(mActivity, tab); local
225 mTabMap.put(tab, tabview);
    [all...]

Completed in 601 milliseconds