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

  /development/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
TabLayoutUsage.java 45 private TabLayout mTabLayout;
59 mTabLayout = (TabLayout) findViewById(R.id.tabs);
64 mViewPager.setOnPageChangeListener(new TabLayoutOnPageChangeListener(mTabLayout));
65 mTabLayout.setOnTabSelectedListener(new ViewPagerOnTabSelectedListener(mViewPager));
82 if (mTabLayout.getTabCount() >= 1) {
83 mTabLayout.removeTabAt(mTabLayout.getTabCount() - 1);
93 mTabLayout.addTab(mTabLayout.newTab().setText(cheese));
99 switch (mTabLayout.getTabMode())
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 55 private LinearLayout mTabLayout;
79 mTabLayout = createTabLayout();
80 addView(mTabLayout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
90 final int childCount = mTabLayout.getChildCount();
109 mTabLayout.measure(MeasureSpec.UNSPECIFIED, heightMeasureSpec);
110 if (mTabLayout.getMeasuredWidth() > MeasureSpec.getSize(widthMeasureSpec)) {
148 removeView(mTabLayout);
167 addView(mTabLayout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
175 final int tabCount = mTabLayout.getChildCount();
177 final View child = mTabLayout.getChildAt(i)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ScrollingTabContainerView.java 64 private LinearLayoutCompat mTabLayout;
89 mTabLayout = createTabLayout();
90 addView(mTabLayout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
100 final int childCount = mTabLayout.getChildCount();
119 mTabLayout.measure(MeasureSpec.UNSPECIFIED, heightMeasureSpec);
120 if (mTabLayout.getMeasuredWidth() > MeasureSpec.getSize(widthMeasureSpec)) {
158 removeView(mTabLayout);
175 addView(mTabLayout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
183 final int tabCount = mTabLayout.getChildCount();
185 final View child = mTabLayout.getChildAt(i)
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 179 milliseconds