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 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...]
  /packages/apps/Browser/src/com/android/browser/
TabBar.java 70 private Map<Tab, TabView> mTabMap;
103 mTabMap = new HashMap<Tab, TabView>();
153 TabView tv = buildTabView(tab);
211 } else if (view instanceof TabView) {
212 final Tab tab = ((TabView) view).mTab;
226 private TabView buildTabView(Tab tab) {
227 TabView tabview = new TabView(mActivity, tab); local
228 mTabMap.put(tab, tabview);
    [all...]

Completed in 28 milliseconds