TabLayout使用

简介

TabLayout provides a horizontal layout to display tabs.

源码注释中表示,TabLayout是提供了一个水平的布局来展示标签。通常我们用来做选项卡这类效果。平常我们有用过开源库 PagerSlidingTabStrip 和 ViewPagerIndicator 来实现效果。

简单使用

1.导入兼容包
compile 'com.android.support:design:24.1.1'
2.layout中添加
<android.support.design.widget.TabLayout
    android:id="@+id/tablayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
3.java中使用
@BindView(R.id.tablayout)
TabLayout tabLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ButterKnife.bind(this);

    tabLayout.addTab(tabLayout.newTab().setText("头条"));
    tabLayout.addTab(tabLayout.newTab().setText("社会"));
    tabLayout.addTab(tabLayout.newTab().setText("娱乐"));
    tabLayout.addTab(tabLayout.newTab().setText("体育"));
    tabLayout.addTab(tabLayout.newTab().setText("科技"));
    tabLayout.addTab(tabLayout.newTab().setText("财经"));
}

java代码中,通过addTab()方法来添加选项,有4个重载方法:

addTab()

看过源码知道,不管使用哪一个方法,最终都会调用最后一个方法,参数最多的。
(1) Tab tab:就是Tab类实例。
(2) int position:指定添加的Tab插入的位置。
(3) boolean setSelected:指定添加的Tab是否为选中状态
关于Tab类的一些设置方法,下面会说明。

4.效果
TabLayout简单使用

TabLayout样式调整

属性

在layout中添加的时候会发现有如下可设置的属性:

TabLayout属性
  • tabBackground:设置整个TabLayout背景
  • tabIndicatorColor:设置指示器的颜色
  • tabIndicatorHeight:设置指示器的高度
  • tabTextColor:设置未选中项中的字体颜色
  • tabSelectedTextColor:设置选中项中的字体颜色
  • tabTextAppearance:设置style改变字体属性
  • tabMode:设置Tablayout的布局模式,有两个值
    fixed:固定的,不能滑动,很多标签的时候会被挤压
    scrollable:可以滑动的
    默认是fixed
  • tabGravity:设置TabLayout的布局方式,有两个值
    fill:充满
    center:居中
    默认是fill,且只有当tabMode为fixed时才有效
  • tabMaxWidth:设置tab项最大的宽度
  • tabMinWidth:设置tab项最小的宽度
  • tabContentStart:设置TabLayout开始位置的偏移量
  • paddingStart,paddingEnd:设置整个TabLayout的内边距
  • tabPadding,tabPaddingStart,tabPaddingEnd,tabPaddingTop,tabPaddingBottom:设置tab项的内边距

示例:

<android.support.design.widget.TabLayout
    android:id="@+id/tablayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:tabBackground="@color/colorPrimary"
    app:tabIndicatorColor="@android:color/white"
    app:tabIndicatorHeight="4dp"
    app:tabSelectedTextColor="#ffffffff"
    app:tabMode="scrollable"
    app:tabTextAppearance="@style/AppTheme.TabLayout.TextAppearance"/>
style中添加样式

同样,我们可以在style中添加一个样式,给TabLayout设置style属性。

style.xml
<style name="AppTheme.TabLayout" parent="Widget.Design.TabLayout">
    <item name="tabMode">scrollable</item>
    <item name="tabIndicatorColor">@android:color/white</item>
    <item name="tabIndicatorHeight">4dp</item>
    <item name="tabTextAppearance">@style/AppTheme.TabLayout.TextAppearance</item>
    <item name="tabBackground">@color/colorPrimary</item>
    <item name="tabSelectedTextColor">@android:color/white</item>
</style>
<style name="AppTheme.TabLayout.TextAppearance" parent="TextAppearance.Design.Tab">
    <item name="android:textSize">16sp</item>
    <item name="android:textColor">#b2ffffff</item>
    <item name="textAllCaps">false</item>
</style>
layout
<android.support.design.widget.TabLayout
    android:id="@+id/tablayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    style="@style/AppTheme.TabLayout"/>
效果
样式调整效果

Tab类

Tab类是TabLayout中的静态内部类,源码:

Tab静态内部类

看源码知道Tab类的构造方法是私有的,不能直接new对象,注释也表明了使用方法,通过newTab()方法来创建实例。

Tab类的一些设置方法,看下图:

Tab相关设置方法
  • setContentDescription:设置tab标签内容描述
  • seCustomView:设置一个自定义view来显示标签
  • setIcon:给tab设置一个icon
  • setTag:给tab设置一个标签
  • setText:设置tab的文本内容

示例

@BindView(R.id.tablayout)
TabLayout tabLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ButterKnife.bind(this);

    TabLayout.Tab tab1 = tabLayout.newTab();
    tab1.setContentDescription("one");
    tab1.setIcon(R.mipmap.ic_launcher);
    tab1.setText("头条");
    tab1.setTag(1);
    tabLayout.addTab(tab1);

    //自定义view
    View view = LayoutInflater.from(this).inflate(R.layout.custom_tab_layout, null);
    ImageView iv_tab = (ImageView) view.findViewById(R.id.iv_tab);
    TextView tv_tab = (TextView) view.findViewById(R.id.tv_tab);
    iv_tab.setImageResource(R.mipmap.ic_launcher);
    tv_tab.setText("社会");
    TabLayout.Tab tab2 = tabLayout.newTab();
    tab2.setCustomView(view);
    tab2.setContentDescription("two");
    tab2.setTag(2);
    tabLayout.addTab(tab2);

    tabLayout.addTab(tabLayout.newTab().setText("娱乐"));
    tabLayout.addTab(tabLayout.newTab().setText("体育"));
    tabLayout.addTab(tabLayout.newTab().setText("科技"));
    tabLayout.addTab(tabLayout.newTab().setText("财经"));
}

自定义view的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="horizontal">
    <ImageView
        android:id="@+id/iv_tab"
        android:layout_width="30dp"
        android:scaleType="fitXY"
        android:layout_height="30dp"/>
    <TextView
        android:id="@+id/tv_tab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#b2ffffff"
        android:layout_marginLeft="3dp"
        android:gravity="center" />
</LinearLayout>

效果

Tab设置效果

TabLayout+ViewPager

使用TabLayout时,更多的是用场景是配合ViewPager一起使用,通过TabLayout的setupWithViewPager()方法,使两者关联起来。

示例:

layout布局
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <android.support.v7.widget.Toolbar
        android:id="@+id/main_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/colorPrimary"
        android:theme="@style/AppTheme.AppBarOverlay"
        app:popupTheme="@style/AppTheme.PopupOverlay"/>
    <android.support.design.widget.TabLayout
        android:id="@+id/tablayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/AppTheme.TabLayout"/>
    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</LinearLayout>
创建Fragment

(1)布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/title_tv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:textSize="20sp"
        android:gravity="center">
    </TextView>
</LinearLayout>

(2)java类

public class TabFragment extends Fragment {

    public static final String PAGE_TITLE = "PAGE_TITLE";
    private String title;

    public static TabFragment newInstance(String title) {
        Bundle bundle = new Bundle();
        bundle.putString(PAGE_TITLE, title);
        TabFragment tabFragment = new TabFragment();
        tabFragment.setArguments(bundle);
        return tabFragment;
    }

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        title = getArguments().getString(PAGE_TITLE);

    }

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_tab, container, false);
        TextView titleTv = (TextView) view.findViewById(R.id.title_tv);
        titleTv.setText(title);
        return view;
    }
}
创建ViewPager适配器
public class TabFragmentPagerAdapter extends FragmentPagerAdapter {
    private static final String[] mTitles = {"头条", "社会", "娱乐", "体育", "科技", "财经"};

    public TabFragmentPagerAdapter(FragmentManager fm) {
        super(fm);
    }

    @Override
    public Fragment getItem(int position) {
        return TabFragment.newInstance(mTitles[position]);
    }

    @Override
    public int getCount() {
        return mTitles.length;
    }

    @Override
    public CharSequence getPageTitle(int position) {
        return mTitles[position];
    }
}
Activity中关联
@BindView(R.id.tablayout)
TabLayout tabLayout;
@BindView(R.id.viewpager)
ViewPager mViewPager;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ButterKnife.bind(this);

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

推荐阅读更多精彩内容

  • 通常在ViewPager的上方,我们都会放一个标签指示器与ViewPager进行联动。以前,我们大多使用的是Git...
    DoAndKeep阅读 79,581评论 36 110
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,506评论 25 707
  • 写在前面 更多Material Design 文章请看:Material Design 之 Toolbar 开发实...
    依然范特稀西阅读 37,995评论 16 110
  • 重帏深下莫愁堂,卧后清宵细细长。 神女生涯原是梦,小姑居处本无郎。 风波不信菱枝弱,月露谁教桂叶香。 直道相思了无...
    庆忌_阅读 552评论 0 1
  • 昨晚竟然梦到了前男友。 这是一个很长的梦,醒来还记得大半。梦见他带我回家吃饭,还和他的爸爸妈妈奶奶打招呼,梦见我远...
    dd6f72aa959b阅读 99评论 3 0