TabLayout的默认样式:

app:theme="@style/Widget.Design.TabLayout"

从系统定义的该样式继续深入:

fill

fixed

264dp

?attr/colorAccent

2dp

12dp

12dp

?attr/selectableItemBackground

@style/TextAppearance.Design.Tab

?android:textColorPrimary

接着,看看系统定义Tab文本的样式(注意textAllcaps这个属性):

14dp

?android:textColorSecondary

true

从系统定义TabLayout的默认样式可以看出,我们可以改变TabLayout对应的系统样式的属性值来适配我们自己的需求.

TabLayout的基本用法

TabLayout独立使用使用时,可以xml布局中静态添加tab个数及其样式,也可以动态添加Tab的个数及其样式,如:

android:id="@+id/tablayout"

android:background="@color/colorPrimary"

android:layout_width="match_parent"

android:layout_height="wrap_content">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="Android"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:icon="@mipmap/ic_launcher"/>

或者:

android:id="@+id/tablayout"

android:background="@color/colorPrimary"

android:layout_width="match_parent"

android:layout_height="wrap_content"/>

private int[] images = new int[]{

R.drawable.ic_account_balance_wallet_black,

R.drawable.ic_android_black,

R.drawable.ic_account_box_black};

private String[] tabs = new String[]{"小说", "电影", "相声"};

TabLayout tabLayout = (TabLayout) findViewById(R.id.tablayout);

tabLayout.addTab(tabLayout.newTab().setIcon(images[0]).setText(tabs[0]),true);

tabLayout.addTab(tabLayout.newTab().setIcon(images[1]).setText(tabs[1]),false);

tabLayout.addTab(tabLayout.newTab().setIcon(images[2]).setText(tabs[2]),false);

TabLayout在实际开发中最多的是与ViewPager联合使用,实现TabLayout与ViewPager的联动:

android:id="@+id/tablayout"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:background="@color/colorPrimary"

app:tabGravity="fill"

app:tabIndicatorColor="@android:color/holo_orange_dark"

app:tabIndicatorHeight="2dp"

app:tabMode="fixed"

app:tabSelectedTextColor="@android:color/holo_orange_dark"

app:tabTextAppearance="@style/CustomTabTextAppearanceStyle"

app:tabTextColor="@android:color/white"

app:theme="@style/Widget.Design.TabLayout"/>

android:id="@+id/view_pager"

android:layout_width="match_parent"

android:layout_height="match_parent"/>

TabLayout tabLayout = (TabLayout) findViewById(R.id.tablayout);

ViewPager viewPager = (ViewPager) findViewById(R.id.view_pager);

viewPager.setAdapter(new TabPagerAdapter(getSupportFragmentManager()));

tabLayout.setupWithViewPager(viewPager);

值得注意的是:

在TabPagerAdapter中需要实现getPagerTitle()否则,TabLayout的Tab将不显示,先看TabLayout#setupWithPager()源码,发现Tab的添加是在populateFromPagerAdapter()中实现,实现源码如下,可以看出该方法调用了PagerAdpater#getPagerTitle()为Tab设置文本信息,如果我们自定义的Adapter没有实现getPagerTitle()将会导致Tab不显示文本信息.

void populateFromPagerAdapter() {

removeAllTabs();

if (mPagerAdapter != null) {

final int adapterCount = mPagerAdapter.getCount();

for (int i = 0; i < adapterCount; i++) {

addTab(newTab().setText(mPagerAdapter.getPageTitle(i)), false);

}

// Make sure we reflect the currently set ViewPager item

if (mViewPager != null && adapterCount > 0) {

final int curItem = mViewPager.getCurrentItem();

if (curItem != getSelectedTabPosition() && curItem < getTabCount()) {

selectTab(getTabAt(curItem));

}

}

}

}

另外, 我们发现getPagerTitle()方法的返回值CharSequence而不是String,那么Tab的文本信息的设置将变得更加灵活,比如设置一个SpanableString,将图片和文本设置Tab的文本.

@Override

public CharSequence getPageTitle(int position) {

Drawable image = TablayoutActivity.this.getResources().getDrawable(images[position]);

image.setBounds(0, 0, image.getIntrinsicWidth()/2, image.getIntrinsicHeight()/2);

ImageSpan imageSpan = new ImageSpan(image, ImageSpan.ALIGN_BOTTOM);

SpannableString ss = new SpannableString(" "+tabs[position]);

ss.setSpan(imageSpan, 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

return ss;

}

但是Tab缺没有显示任何信息,一片空白,从上面提到的TabLayout的系统默认样式中我们发现: true,这会阻止ImageSpan渲染出来,我们只需要将textAllCaps改为false即可,如下定义,再次运行,成功显示

false

修改Indicator的长度:

从TabLayout的源码可以看出Indicator的绘制,是在其内部类SlidingTabStrip中绘制,而SlingTabStrip类继承LinearLayout,源码如下:

@Override

public void draw(Canvas canvas) {

super.draw(canvas);

// Thick colored underline below the current selection

if (mIndicatorLeft >= 0 && mIndicatorRight > mIndicatorLeft) {

canvas.drawRect(mIndicatorLeft, getHeight() - mSelectedIndicatorHeight,

mIndicatorRight, getHeight(), mSelectedIndicatorPaint);

}

}

在onDraw()中主要是就绘制一个Rect,并且宽度是根据mIndicatorLeft和mIndicatorRight设置的,而mIndicatorLeft等的宽度来自SlidingTabStrip的child,而Child就相当于一个Tab,这样我们就通过修改Child的margin来设置mIndicatorLeft的值.

public void setIndicator(TabLayout tabs, int leftDip, int rightDip) {

Class> tabLayout = tabs.getClass();

Field tabStrip = null;

try {

tabStrip = tabLayout.getDeclaredField("mTabStrip");

} catch (NoSuchFieldException e) {

e.printStackTrace();

}

tabStrip.setAccessible(true);

LinearLayout llTab = null;

try {

llTab = (LinearLayout) tabStrip.get(tabs);

} catch (IllegalAccessException e) {

e.printStackTrace();

}

int left = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, leftDip, Resources.getSystem().getDisplayMetrics());

int right = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, rightDip, Resources.getSystem().getDisplayMetrics());

for (int i = 0; i < llTab.getChildCount(); i++) {

View child = llTab.getChildAt(i);

child.setPadding(0, 0, 0, 0);

LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(0, LinearLayout.LayoutParams.MATCH_PARENT, 1);

params.leftMargin = left;

params.rightMargin = right;

child.setLayoutParams(params);

child.invalidate();

}

}

然后在代码中调用即可,但是要注意,必须要在Tablayout渲染出来后调用,我们可以选择view.post()方法来实现:

tabLayout.post(new Runnable() {

@Override

public void run() {

setIndicator(tabLayout, 20, 20);

}

});

最后得到效果图如下:

自定义TabLayout的TabItem及TabItem的点击事件

在TabLayout的Api是没有提供TabItem点击事件的方法,如果我们想实现如下效果图,怎么办?

先自定义一个TabItem:

android:layout_width="match_parent"

android:layout_height="match_parent"

android:gravity="center"

android:orientation="horizontal">

android:id="@+id/txt_title"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:textSize="14sp" />

android:id="@+id/img_title"

android:src="@drawable/indicator"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginLeft="5dp" />

在自定义的Adapter中可以定义一个getTabView的方法:

public View getTabView(int position){

View view = LayoutInflater.from(context).inflate(R.layout.tab_item, null);

TextView tv= (TextView) view.findViewById(R.id.textView);

tv.setText(tabTitles[position]);

ImageView img = (ImageView) view.findViewById(R.id.imageView);

img.setImageResource(imageResId[position]);

return view;

}

重新设置点击事件:

viewPager.setAdapter(pagerAdapter);

tabLayout.setupWithViewPager(viewPager);

for (int i = 0; i < tabLayout.getTabCount(); i++) {

TabLayout.Tab tab = tabLayout.getTabAt(i);

if (tab != null) {

tab.setCustomView(pagerAdapter.getTabView(i));

if (tab.getCustomView() != null) {

View tabView = (View) tab.getCustomView().getParent();

tabView.setTag(i);

tabView.setOnClickListener(mTabOnClickListener);

}

}

}

viewPager.setCurrentItem(1);

以上所述是小编给大家介绍的TabLayout用法详解及自定义样式,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

android tablayout 自定义,TabLayout用法详解及自定义样式相关推荐

  1. mysql: union / union all / 自定义函数用法详解

    mysql: union / union all http://www.cnblogs.com/wangyayun/p/6133540.html mysql:自定义函数用法详解 http://www. ...

  2. Android Animation之ScaleAnimation用法详解

    ScaleAnimation用法详解 ScaleAnimation是Animation的子类,其有四个构造方法: 1.public ScaleAnimation(Context context, At ...

  3. Android中am命令用法详解

    Android中am命令用法 位于frameworks/base/cmds/pm am命令作用:管理Activity usage: am [start|broadcast|instrument|pro ...

  4. Android的菜单栏Menu用法详解(超详细)

    菜单栏Menu用法讲解 菜单是Android应用中非常重要且常见的组成部分.能够极大的节省我们页面的使用空间,提高页面的利用率. 安卓常用的菜单有三种: OptionMenu:选项菜单,android ...

  5. 【Android 应用开发】Android - TabHost 选项卡功能用法详解

    TabHost效果图 : 源码下载地址 : http://download.csdn.net/detail/han1202012/6845105        . 作者 :万境绝尘  转载请注明出处  ...

  6. Android 广播机制以及用法详解 (转)

    转:http://blog.sina.com.cn/s/blog_5da93c8f010178zl.html 参考:http://blog.sina.com.cn/s/blog_80723de8010 ...

  7. android shap,Android中Shape的用法详解

    ShapeDrawable是一种很常见的Drawable,可以理解为通过颜色来构造的图形,它既可以是纯色的图形,也可以是具有渐变效果的图形,ShapeDrawabled语法稍显复杂,如下所示: xml ...

  8. python自定义包_详解python自定义模块、包

    1.保存一个hello.py文件在F:/data/python目录下hello.py >>> def hello(x): print x 目录 导入 >>> imp ...

  9. android搜索功能xml,Android_Android ActionBar搜索功能用法详解,本文实例讲述了Android ActionBar - phpStudy...

    Android ActionBar搜索功能用法详解 本文实例讲述了Android ActionBar搜索功能用法.分享给大家供大家参考,具体如下: 使用ActionBar SearchView时的注意 ...

最新文章

  1. Struts2.0下的客户端验证
  2. Apache2.2.16+PHP5.3.3+MySQL5.1.49的配置方法
  3. 跟我一起写 Makefile(九)
  4. caioj 1063 动态规划入门(一维一边推1:美元和马克)
  5. PyTorch基础-Tensor的属性,数据,运算-01
  6. 【从上云到创新,视频云的新技术与新场景】
  7. A comparative study of various methods of bearing faults diagnosis using the CWRU data.-学习笔记
  8. Keepalived实现双机热备
  9. java模式之观察者模式
  10. 系统快捷方式java_java中这么创建界面快捷方式图标 代码
  11. 佐藤hiroko-爱拯救了我(步之物语)
  12. 《深入浅出数据分析》读书笔记
  13. 企查查等人物关系图谱、企业图谱等效果
  14. 7-214 泰勒级数展开近似sin(x)的值7-215 求班级平均分7-216 同数异形体
  15. 默林娱乐集团首席执行官首度访华,上海乐高乐园度假区新进展
  16. php 简转繁体,PHP将简体汉字转为繁体的方法
  17. 血泪史!外包如何找到靠谱的兼职程序员?
  18. 《赢在中国》精彩评语 2006年度
  19. Verilog学习笔记(一)
  20. 100%完美解决 mac系统不能使用su命令问题 —— sudo和su的区别

热门文章

  1. 网安学习笔记-1 文件上传
  2. 耐用型超高频抗金属标签 - 抗金属rfid电子标签 - pcb标签
  3. 金太阳开启了光伏,扶贫开启了分布式
  4. 数据结构之顺序存储结构和链式存储结构分析 , 图文并茂 , 又涨姿势了
  5. 中秋节的真实来历是什么呢?
  6. Pycharm换python版本
  7. java中如何定义一个数组
  8. Semaphore的概念及基本用法
  9. geotools使用
  10. Vue3引入彩色阿里巴巴Iconfont图标