原文出处:http://chenfuduo.me/2015/07/30/TabLayout-of-design-support-library/
在开发中,我们常常需要ViewPager结合Fragment一起使用,如下图:
1
我们可以使用三方开源的PagerSlidingTabStrip去实现,或者viewpagerindicator,我一般都偏向前者。现在我们可以使用Design support library库的TabLayout去实现了。最终的效果图:
效果图
<iframe id="aswift_0" style="box-sizing: border-box; border-width: 0px; border-style: initial; margin: 0px; padding: 0px; left: 0px; position: absolute; top: 0px;" name="aswift_0" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="728" height="90"></iframe>
创建布局
-
<?xml version="1.0" encoding="utf-8"?>
-
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-
xmlns:app="http://schemas.android.com/apk/res-auto"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent"
-
android:orientation="vertical">
-
-
-
<!--app:tabMode="scrollable" 这个属性我在代码中设置了-->
-
<!-- tabLayout.setTabMode(TabLayout.MODE_SCROLLABLE);-->
-
<android.support.design.widget.TabLayout
-
android:id="@+id/sliding_tabs"
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content"
-
/>
-
-
<android.support.v4.view.ViewPager
-
android:id="@+id/viewpager"
-
android:layout_width="match_parent"
-
android:layout_height="0px"
-
android:layout_weight="1"
-
android:background="@android:color/white" />
-
- </LinearLayout>
-
- 在xml添加TabLayout,如同ViewPager,直接`android.support.design.widget.TabLayout`即可。还有其他的属性我会在代码中设置。
|
创建Fragment
-
package me.chenfuduo.myfragmentdemo.fragment;
-
-
import android.os.Bundle;
-
import android.support.annotation.Nullable;
-
import android.support.v4.app.Fragment;
-
import android.view.LayoutInflater;
-
import android.view.View;
-
import android.view.ViewGroup;
-
import android.widget.TextView;
-
-
import me.chenfuduo.myfragmentdemo.R;
-
- /**
- * Created by Administrator on 2015/7/30.
- */
-
public class PageFragment extends Fragment {
-
-
public static final String ARG_PAGE = "ARG_PAGE";
-
private int mPage;
-
-
public static PageFragment newInstance(int page) {
-
Bundle args = new Bundle();
-
args.putInt(ARG_PAGE, page);
-
PageFragment pageFragment = new PageFragment();
-
pageFragment.setArguments(args);
-
return pageFragment;
-
}
-
-
@Override
-
public void onCreate(Bundle savedInstanceState) {
-
super.onCreate(savedInstanceState);
-
mPage = getArguments().getInt(ARG_PAGE);
-
}
-
-
@Nullable
-
@Override
-
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
-
View view = inflater.inflate(R.layout.fragment_page, container, false);
-
TextView textView = (TextView) view;
-
textView.setText("Fragment #" + mPage);
-
return view;
-
}
-
- }
|
其中Fragment的布局为:
-
<?xml version="1.0" encoding="utf-8"?>
-
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent"
-
android:gravity="center" />
|
ViewPager的适配器
-
package me.chenfuduo.myfragmentdemo.adapter;
-
-
import android.content.Context;
-
import android.support.v4.app.Fragment;
-
import android.support.v4.app.FragmentManager;
-
import android.support.v4.app.FragmentPagerAdapter;
-
-
import me.chenfuduo.myfragmentdemo.fragment.PageFragment;
-
- /**
- * Created by Administrator on 2015/7/30.
- */
-
public class SimpleFragmentPagerAdapter extends FragmentPagerAdapter {
-
-
final int PAGE_COUNT = 3;
-
private String tabTitles[] = new String[]{"tab1","tab2","tab3"};
-
private Context context;
-
-
public SimpleFragmentPagerAdapter(FragmentManager fm,Context context) {
-
super(fm);
-
this.context = context;
-
}
-
-
@Override
-
public Fragment getItem(int position) {
-
return PageFragment.newInstance(position + 1);
-
}
-
-
@Override
-
public int getCount() {
-
return PAGE_COUNT;
-
}
-
-
@Override
-
public CharSequence getPageTitle(int position) {
-
return tabTitles[position];
-
}
- }
|
设置TabLayout
-
package me.chenfuduo.myfragmentdemo;
-
-
import android.os.Bundle;
-
import android.support.design.widget.TabLayout;
-
import android.support.v4.app.FragmentActivity;
-
import android.support.v4.view.ViewPager;
-
import android.view.Menu;
-
import android.view.MenuItem;
-
-
import me.chenfuduo.myfragmentdemo.adapter.SimpleFragmentPagerAdapter;
-
-
public class ThirdActivity extends FragmentActivity {
-
-
private SimpleFragmentPagerAdapter pagerAdapter;
-
-
private ViewPager viewPager;
-
-
private TabLayout tabLayout;
-
-
@Override
-
protected void onCreate(Bundle savedInstanceState) {
-
super.onCreate(savedInstanceState);
-
setContentView(R.layout.activity_third);
-
pagerAdapter = new SimpleFragmentPagerAdapter(getSupportFragmentManager(), this);
-
viewPager = (ViewPager) findViewById(R.id.viewpager);
-
viewPager.setAdapter(pagerAdapter);
-
tabLayout = (TabLayout) findViewById(R.id.sliding_tabs);
-
tabLayout.setupWithViewPager(viewPager);
-
tabLayout.setTabMode(TabLayout.MODE_FIXED);
-
}
- }
|
这里提几点我遇到的问题
开始我设置的是:
-
tabLayout.setTabMode(TabLayout.MODE_SCROLLABLE);
|
运行后,三个TabLayout标签挤到一块去了。如下:
查看api,找到结果了。这个tabmode有两个属性值:
-
MODE_FIXED:Fixed tabs display all tabs concurrently and are best used with content that benefits from quick pivots between tabs.
-
MODE_SCROLLABLE:Scrollable tabs display a subset of tabs at any given moment, and can contain longer tab labels and a larger number of tabs.
不做过多的解释,MODE_SCROLLABLE适合很多tabs的情况。
查看下源码就知道了:
-
public void setupWithViewPager(ViewPager viewPager) {
-
PagerAdapter adapter = viewPager.getAdapter();
-
if(adapter == null) {
-
throw new IllegalArgumentException("ViewPager does not have a PagerAdapter set");
-
} else {
-
...
-
}
- }
|
以上就是最基本的用法,是不是很简单。哈~
定义TabLayout的样式
默认的情况下,TabLayout的tab indicator的颜色是Material Design中的accent color(#009688),我们可以稍作修改:
-
<style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
-
<item name="tabIndicatorColor">#0000FF</item>
- </style>
|
在布局中使用:
- <android.support.design.widget.TabLayout
-
android:id="@+id/sliding_tabs"
-
style="@style/MyCustomTabLayout"
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content"
-
/>
|
还有一些其他的样式可供选择:
-
<style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
-
<item name="tabMaxWidth">@dimen/tab_max_width</item>
-
<item name="tabIndicatorColor">?attr/colorAccent</item>
-
<item name="tabIndicatorHeight">2dp</item>
-
<item name="tabPaddingStart">12dp</item>
-
<item name="tabPaddingEnd">12dp</item>
-
<item name="tabBackground">?attr/selectableItemBackground</item>
-
<item name="tabTextAppearance">@style/MyCustomTabTextAppearance</item>
-
<item name="tabSelectedTextColor">?android:textColorPrimary</item>
- </style>
-
<style name="MyCustomTabTextAppearance" parent="TextAppearance.Design.Tab">
-
<item name="android:textSize">14sp</item>
-
<item name="android:textColor">?android:textColorSecondary</item>
-
<item name="textAllCaps">true</item>
- </style>
|
添加icon到tab
当前的TabLayout没有方法让我们去添加icon,我们可以使用SpannableString结合ImageSpan来实现,在SimpleFragmentPagerAdapter中:
-
private int[] imageResId = {
-
R.drawable.ic_one,
-
R.drawable.ic_two,
-
R.drawable.ic_three
- };
-
- // ...
-
- @Override
-
public CharSequence getPageTitle(int position) {
-
// Generate title based on item position
-
// return tabTitles[position];
-
Drawable image = context.getResources().getDrawable(imageResId[position]);
-
image.setBounds(0, 0, image.getIntrinsicWidth(), image.getIntrinsicHeight());
-
SpannableString sb = new SpannableString(" ");
-
ImageSpan imageSpan = new ImageSpan(image, ImageSpan.ALIGN_BOTTOM);
-
sb.setSpan(imageSpan, 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
-
return sb;
- }
|
运行,发现没有显示,这是因为TabLayout创建的tab默认设置textAllCaps属性为true,这阻止了ImageSpan被渲染出来,可以通过下面的样式文件定义来改变:
-
<style name="MyCustomTabLayout" parent="Widget.Design.TabLayout">
-
<item name="tabTextAppearance">@style/MyCustomTextAppearance</item>
- </style>
-
-
<style name="MyCustomTextAppearance" parent="TextAppearance.Design.Tab">
-
<item name="textAllCaps">false</item>
- </style>
|
现在运行,效果就出来了。
添加icon和text到tab
- @Override
-
public CharSequence getPageTitle(int position) {
-
// Generate title based on item position
-
Drawable image = context.getResources().getDrawable(imageResId[position]);
-
image.setBounds(0, 0, image.getIntrinsicWidth(), image.getIntrinsicHeight());
-
// Replace blank spaces with image icon
-
SpannableString sb = new SpannableString(" " + tabTitles[position]);
-
ImageSpan imageSpan = new ImageSpan(image, ImageSpan.ALIGN_BOTTOM);
-
sb.setSpan(imageSpan, 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
-
return sb;
- }
|
我们看到在实例化SpannableString的时候,我在tabTitles[position]前面加了几个空格,这些空格的位置是用来放置icon的。
添加自定义的view到tab
适配器中增加getTabView(...)方法:
-
package me.chenfuduo.myfragmentdemo.adapter;
-
-
import android.content.Context;
-
import android.support.v4.app.Fragment;
-
import android.support.v4.app.FragmentManager;
-
import android.support.v4.app.FragmentPagerAdapter;
-
import android.view.LayoutInflater;
-
import android.view.View;
-
import android.widget.ImageView;
-
import android.widget.TextView;
-
-
import me.chenfuduo.myfragmentdemo.R;
-
import me.chenfuduo.myfragmentdemo.fragment.PageFragment;
-
- /**
- * Created by Administrator on 2015/7/30.
- */
-
public class SimpleFragmentPagerAdapter extends FragmentPagerAdapter {
-
-
final int PAGE_COUNT = 3;
-
private String tabTitles[] = new String[]{"tab1", "tab2", "tab3"};
-
private int[] imageResId = {R.drawable.avatar_enterprise_vip,
-
R.drawable.avatar_grassroot,
-
R.drawable.avatar_vip};
-
private Context context;
-
-
public SimpleFragmentPagerAdapter(FragmentManager fm, Context context) {
-
super(fm);
-
this.context = context;
-
}
-
-
@Override
-
public Fragment getItem(int position) {
-
return PageFragment.newInstance(position + 1);
-
}
-
-
@Override
-
public int getCount() {
-
return PAGE_COUNT;
-
}
-
-
@Override
-
public CharSequence getPageTitle(int position) {
-
//第一次的代码
-
//return tabTitles[position];
-
//第二次的代码
-
/**
- Drawable image = context.getResources().getDrawable(imageResId[position]);
- image.setBounds(0, 0, image.getIntrinsicWidth(), image.getIntrinsicHeight());
- SpannableString sb = new SpannableString(" " + tabTitles[position]);
- ImageSpan imageSpan = new ImageSpan(image, ImageSpan.ALIGN_BOTTOM);
- sb.setSpan(imageSpan, 0, 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
- return sb;*/
-
-
-
return null;
-
}
-
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;
-
}
-
- }
|
简单的布局:
-
<?xml version="1.0" encoding="utf-8"?>
-
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
>
-
-
<ImageView
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:id="@+id/imageView"
-
android:layout_centerVertical="true"
-
/>
-
-
<TextView
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:layout_toRightOf="@id/imageView"
-
android:layout_centerVertical="true"
-
android:id="@+id/textView"
-
android:layout_marginLeft="3dp"
-
/>
-
- </RelativeLayout>
|
使用:
- @Override
-
protected void onCreate(Bundle savedInstanceState) {
-
super.onCreate(savedInstanceState);
-
setContentView(R.layout.activity_third);
-
pagerAdapter = new SimpleFragmentPagerAdapter(getSupportFragmentManager(), this);
-
viewPager = (ViewPager) findViewById(R.id.viewpager);
-
viewPager.setAdapter(pagerAdapter);
-
tabLayout = (TabLayout) findViewById(R.id.sliding_tabs);
-
tabLayout.setupWithViewPager(viewPager);
-
tabLayout.setTabMode(TabLayout.MODE_FIXED);
-
for (int i = 0; i < tabLayout.getTabCount(); i++) {
-
TabLayout.Tab tab = tabLayout.getTabAt(i);
-
tab.setCustomView(pagerAdapter.getTabView(i));
-
}
-
}
|
处理配置改变
当屏幕旋转或者配置改变的时候,我们需要保存当前的状态。
- @Override
-
public void onSaveInstanceState(Bundle outState) {
-
super.onSaveInstanceState(outState);
-
outState.putInt(POSITION,tabLayout.getSelectedTabPosition());
-
}
-
-
@Override
-
protected void onRestoreInstanceState(Bundle savedInstanceState) {
-
super.onRestoreInstanceState(savedInstanceState);
-
viewPager.setCurrentItem(savedInstanceState.getInt(POSITION));
-
}
|
需要注意的是getSelectedTabPosition()方法是最新的design support library才有的。
最后的效果如下:
分享到:
相关推荐
TabLayout是Android Support Library中的一个控件,它提供了Material Design风格的标签页。这些标签页可以水平滑动,允许用户在多个页面间切换,而无需离开当前视图。TabLayout支持多种模式,如固定宽度、滚动和堆...
在Android开发中,TabLayout是谷歌Material Design设计规范中的一部分,用于实现标签页切换功能,为用户界面提供清晰的导航。本教程将详细介绍如何在Android Studio中使用TabLayout实现滑动标签页。 首先,让我们...
TabLayout 是 Android Support Library(现称为 AndroidX)的一部分,提供了一种在界面上创建可滑动标签页的方法。它可以与 ViewPager 配合,使得用户可以轻松地在多个页面之间切换,每个页面代表一个标签。 2. **...
本教程将深入探讨Design Support Library v28中的关键控件及其使用方法。 1. **CoordinatorLayout**: 这是一个高级布局,可以协调其子视图的行为,特别是在滚动事件发生时。例如,它可以用于实现...
TabLayout是Android Design Support Library的一部分,它提供了Material Design风格的标签栏。在项目中引入库依赖是第一步: ```xml dependencies { implementation 'com.google.android.material:material:1.4.0'...
TabLayout是Google在Android Design Support Library中提供的一个UI控件,遵循Material Design规范,能与ViewPager等组件配合使用,提供良好的用户体验。 **一、TabLayout的基本用法** 1. **添加依赖** 在项目的...
本篇文章将详细介绍如何使用Android Design Support Library中的`TabLayout`组件来创建自定义的底部导航栏。 首先,`TabLayout`是Google推荐的一种用于展示标签页的UI组件,它与`ViewPager`配合使用可以实现滑动...
1. **TabLayout**:这是Android Design Support Library中的一部分,用于创建底部导航栏,通常与ViewPager配合使用,提供多个标签页间的切换。 2. **Fragment**:在Android中,Fragment代表一个可以添加到Activity...
TabLayout是Google提供的Material Design组件之一,它为应用程序提供了一个可定制的标签式导航视图。通常,TabLayout会与ViewPager结合使用,因为ViewPager可以管理多个页面的滑动切换,而TabLayout则负责显示这些...
TabLayout是Android Support Library中的一个组件,它与ViewPager配合使用,可以实现可滑动的Tab标签。在传统的横向TabLayout中,Tab标签会水平排列,而我们要实现的是垂直排列的Tab。 1. **设置项目依赖** 在`...
标题中的"md TabLayout"指的是...通过深入这些主题,我们可以构建一个关于Android开发中使用Material Design和TabLayout的详细知识框架,这对于任何希望创建现代、互动性好的Android应用的开发者都是极其重要的。
- TabLayout是Android Design Support Library的一部分,引入依赖库后,可以在布局XML文件中添加TabLayout组件。基本用法是在布局文件中声明`<androidx.appcompat.widget.TabLayout>`标签,并设置相应的属性,如`...
本项目实例是基于Android Studio的TabLayout应用开发,旨在教你如何有效地集成并使用TabLayout来提升用户体验。下面将详细阐述TabLayout的主要特性和在Android Studio中的实际操作步骤。 首先,TabLayout是Android ...
TabLayout使用方法详解 TabLayout是Android Design Support Library中提供的一个控件,可以方便地使用指示器,功能类似ViewPagerIndicator。使用非常方便,只需要在Gradle中引入相关依赖项,即可使用。 单独使用...
在Android应用开发中,TabLayout是一个非常常用的组件,它提供了在顶部展示标签页的功能,使得用户可以方便地在多个视图之间切换。本教程将详细讲解如何在Eclipse环境中使用TabLayout来创建一个示例应用。 首先,...
Android Material Design 是谷歌推出的一种设计语言,旨在提供一套统一、美观且富有表现力的界面设计规范,用于Android应用开发。这种设计风格强调层次感、动效和颜色的使用,为用户带来更直观、更具反馈的交互体验...
在Android开发中,TabLayout是Google在Android Design Support Library中提供的一种用于实现底部标签栏的组件,它遵循了Material Design的设计规范,可以方便地与ViewPager结合使用,用于创建多页内容的切换效果。...
`TabLayout`属于Android Support Library中的`design`包,提供了美观且易于定制的标签页切换效果。在本教程中,我们将深入探讨`TabLayout`的使用方法,以及如何通过代码实现与`ViewPager`的联动。 首先,我们需要在...
`TabLayout`是Android Design Support Library中的一个重要组件,它提供了美观且易于使用的标签页功能,可以与`ViewPager`结合使用,实现底部Tab栏的交互效果。本文将详细介绍如何使用`TabLayout`和`ViewPager`在...