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

  /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...]
  /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 4870 milliseconds