TabLayout +ViewPager+Fragment 组合使用

1. tabLayout的使用

  • 布局:
   <android.support.design.widget.TabLayout
        android:id="@+id/tab"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize">

        <android.support.design.widget.TabItem
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Tab1" />

        <android.support.design.widget.TabItem
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Tab2"/>

        <android.support.design.widget.TabItem
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Tab3" />
        <android.support.design.widget.TabItem
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Tab4" />

    </android.support.design.widget.TabLayout>
  • 或者使用代码添加:
 TabLayout tabLayout = findViewById(R.id.tab);
        TabLayout.Tab tab = tabLayout.newTab();
        tab.setText("Tab1");
        //添加tab
        tabLayout.addTab(tab);
        //删除tab
        tabLayout.removeTab(tab);
        tabLayout.removeTabAt(0);
        //删除全部tab
        tabLayout.removeAllTabs();

效果图:


image.png
  • 常用属性:
  1. 显示模式
    可滑动: app:tabMode="scrollable"
    固定: app:tabMode="fixed"

  2. 指示器选项
    指示器高度 :app:tabIndicatorHeight="10dp"
    指示器颜色 :app:tabIndicatorColor="@color/colorPrimary"

  3. 文字选项
    选择的Tab的文字颜色:app:tabSelectedTextColor="#ffffff"
    未选择的Tab文字颜色:app:tabTextColor="#000000"

  4. 文字样式:
    app:tabTextAppearance="@style/Base.TextAppearance.AppCompat.Large"

  5. 背景设置(两者没什么区别)
    android:background="@color/colorAccent"
    app:tabBackground="@color/colorPrimary"

  6. 标签距离
    app:tabPaddingStart="10dp"
    app:tabPaddingBottom="10dp"
    app:tabPadding="10dp"
    app:tabPaddingEnd="10dp"
    app:tabPaddingTop="10dp"

  7. 对齐方式
    居中显示:app:tabGravity="center"
    填充:app:tabGravity="fill"
    偏移:app:tabContentStart="200dp"(从左边开始偏移距离, 必须是可滑动的模式 scrollable)

  8. 标签宽度限制
    最大宽度:app:tabMaxWidth="50dp"
    最小宽度:app:tabMinWidth="100dp"

2. TabLayout + ViewPager + Fragment

示例:
tabLayout包含4个tab,每个tab对应一个单独的fragment
fragment代码(布局中仅包含一个textView)

public class MainFragment extends Fragment {
    TextView mTextView;
    public static MainFragment newInstance(String title) {
        MainFragment mainFragment = new MainFragment();
        Bundle bundle = new Bundle();
        bundle.putString("title", title);
        mainFragment.setArguments(bundle);
        return mainFragment;
    }

    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_view, container, false);
        mTextView = view.findViewById(R.id.textView);
        mTextView.setText((CharSequence) getArguments().get("title"));
        return view;
    }
}

添加viewPager的adapter

class ViewPagerAdapter extends FragmentStatePagerAdapter{

        List<Fragment> mFragments;
        String[] mTitles;

        public ViewPagerAdapter(FragmentManager fm, List<Fragment> fragments, String[] titles) {
            super(fm);
            mFragments = fragments;
            mTitles = titles;
        }

        @Override
        public Fragment getItem(int position) {
            return mFragments.get(position);
        }

        @Override
        public int getCount() {
            return mFragments.size();
        }

        @Nullable
        @Override
        public CharSequence getPageTitle(int position) {
            return mTitles[position];
        }
    }

activity中:

mTab = findViewById(R.id.tab);
        mViewPager = findViewById(R.id.viewpager);

        String[] titles = {"TAB1", "TAB2", "TAB3", "TAB4"};

        Fragment fragment1 = MainFragment.newInstance(titles[0]);
        Fragment fragment2 = MainFragment.newInstance(titles[1]);
        Fragment fragment3 = MainFragment.newInstance(titles[2]);
        Fragment fragment4 = MainFragment.newInstance(titles[3]);
        List<Fragment> fragments = new ArrayList<>();
        fragments.add(fragment1);
        fragments.add(fragment2);
        fragments.add(fragment3);
        fragments.add(fragment4);

        ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager(), fragments, titles);
        mViewPager.setAdapter(adapter);
        mTab.setupWithViewPager(mViewPager);
Screenrecorder-2018-11-08-17-26-05-755.gif

2. 使用图标的tabItem

tabItem有icon属性,可以在布局中直接设置:

 <android.support.design.widget.TabLayout
            android:id="@+id/tab_layout"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            app:tabIndicatorHeight="0dp"
            app:tabMode="fixed" >
            <android.support.design.widget.TabItem
                android:icon="@drawable/tab_item_icon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            <android.support.design.widget.TabItem
                android:icon="@drawable/tab_item_icon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            <android.support.design.widget.TabItem
                android:icon="@drawable/tab_item_icon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </android.support.design.widget.TabLayout>

但是这样有个问题,图标太小,没找到可以调整图标大小的办法。显示效果不好。
这里我们可以使用自定义view 的方式。
修改布局:去掉tabItem,改为动态添加。

    <android.support.design.widget.TabLayout
            android:id="@+id/tab_layout"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            app:tabIndicatorHeight="0dp"
            app:tabMode="fixed" />

添加自定义布局:tabitem_icon_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:gravity="center"
    android:layout_height="match_parent">
    <ImageView
        android:src="@drawable/tab_item_icon"
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

图标资源:tab_item_icon.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/ic_home_blue_24dp" android:state_selected="true" />
    <item android:drawable="@drawable/ic_home_black_24dp" />
</selector>

activity中动态添加:

private void initTab() {
        //添加底部tab
        for (int i = 0; i < 4; i++) {
            View view = getLayoutInflater().inflate(R.layout.tabitem_icon_layout, null);
            view.findViewById(R.id.icon).setBackgroundResource(R.drawable.tab_item_icon);
            mTabLayout.addTab(mTabLayout.newTab().setCustomView(view));
        }
    }

这样就达到了我们的效果


image.png

问题:与viewPager的关联
如果用上面提到的方法:
mTabLayout.setupWithViewPager(mViewPager);
我们设置的自定义布局就没有了,tabItem都变成文字了。
可以采用以下方式进行关联:

 mTabLayout.addOnTabSelectedListener(new TabLayout.ViewPagerOnTabSelectedListener(mViewPager));
        mViewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(mTabLayout));
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,552评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,666评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,519评论 0 334
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,180评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,205评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,344评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,781评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,449评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,635评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,467评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,515评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,217评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,775评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,851评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,084评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,637评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,204评论 2 341

推荐阅读更多精彩内容