TabLayout輕鬆實現仿今日頭條頂部tab導航效果

前言

 自android5.0出來後,谷歌使用了Material Design設計風格,隨着帶來了許多新的控件,如:SnackBar,TextinputLayout,以及今天使用的TabLayout,這些新控件的出現使得咱們這些開發者更加方便,下面咱們用TabLayout實現仿最新版的今日頭條頂部導航的效果。
這是咱們今天要實現的一個效果:html

這裏寫圖片描述

你們看到這個效果,你會怎麼實現它?在之前,咱們能夠經過如下幾種啊方式來實現:java

  1. ViewPagerIndicator + Fragment + ViewPager
  2. ActionBar + Fragment + ViewPager
  3. 自定義一個View實現上面的效果

 ViewPagerIndicator是一個國外大牛寫的一個github開源控件,使用也很簡單,可是得設置Activity的主題,這樣不免有所耦合,而ActionBar實現簡單,但耦合性也高,若是咱們程序不使用ActionBar,那麼第二種方式就沒有了,並且怎麼添加右邊的更多按鈕更是一個大問題,那麼今天咱們使用谷歌新出的控件TabLayout來實現這一效果,能夠說TabLayout實現這種效果最簡單最方便了,並且沒有耦合,獨立封裝的一個控件。android

下面咱們經過代碼一步一步地實現上面的導航效果:git

代碼編寫

編碼代碼以前,添加程序所須要的依賴:github

compile 'com.android.support:design:23.0.1'
compile 'com.android.support:support-v4:23.0.1'

第一步:編寫佈局,activity_main.xmlapp

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:app="http://schemas.android.com/apk/res-auto"
              xmlns:tools="http://schemas.android.com/tools"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical"
    >


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#D33C3C"
        android:gravity="center_vertical"
        android:orientation="horizontal">

        <android.support.design.widget.TabLayout
            android:id="@+id/tablayout"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            app:tabIndicatorColor="@android:color/transparent"
            app:tabMode="scrollable">
        </android.support.design.widget.TabLayout>

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginRight="8dp"
            android:src="@mipmap/ic_plus"/>
    </LinearLayout>


    <android.support.v4.view.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"></android.support.v4.view.ViewPager>
</LinearLayout>

說明:ide

 一、 能夠看到TabLayout使用和其餘控件同樣,要注意的是添加命名空間,和設置tabMode屬性爲能夠滾動:佈局

app:tabMode="scrollable">

 二、 設置導航底部的指示顏色爲透明,即去掉底部的矩形指示器,固然設置成其餘顏色那麼底部就會有相應顏色的矩形指示器this

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

第二步:爲ViewPager設置Adapter編碼

ViewPager viewPager = (ViewPager) findViewById(R.id.viewPager);
List<Fragment> fragments = new ArrayList<Fragment>();
for (int i = 0; i < titles.length; i++) {
    Fragment fragment = new MyFragment();
    Bundle bundle = new Bundle();
    bundle.putString("text",titles[i]);
    fragment.setArguments(bundle);
    fragments.add(fragment);
}
viewPager.setAdapter(new TabFragmentAdapter(fragments, titles, getSupportFragmentManager(), this));

MyFragment.java

package com.lt.tablayouttest;

import android.graphics.Color;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

/**
 * Created by lt on 2015/12/14.
 */
public class MyFragment extends Fragment{

    private String mText;

    @Override
    public void onCreate(@Nullable Bundle bundle) {
        super.onCreate(bundle);
        if(getArguments()!=null){
            mText = getArguments().getString("text");
        }
    }

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        TextView textView = new TextView(getActivity());
        ViewGroup.LayoutParams params= new ViewGroup.LayoutParams(-1,-1);
        textView.setLayoutParams(params);
        textView.setGravity(Gravity.CENTER);
        textView.setTextColor(Color.RED);
        textView.setText(mText);
        return textView;
    }
}

 說明:咱們能夠經過fragment.setArguments(Bundle bundle)爲fragment傳遞數據,而後再fragment中經過getArguments()取出bundle中的數據。

TabFragmentAdapter.java

package com.lt.tablayouttest;

import android.content.Context;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;

import java.util.List;

/**
 * Created by lt on 2015/12/14.
 */
public class TabFragmentAdapter extends FragmentPagerAdapter{

    private final String[] titles;
    private Context context;
    private List<Fragment> fragments;

    public TabFragmentAdapter(List<Fragment> fragments,String[] titles, FragmentManager fm, Context context) {
        super(fm);
        this.context = context;
        this.fragments = fragments;
        this.titles = titles;
    }


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

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

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

 說明:重寫getPageTitle(int position)返回每一個頁面的導航標題,這樣TabLayout會從ViewPager中獲得Adapter並經過該方法拿到標題。

第三步:將TabLayouth和ViewPager綁定

// 初始化
TabLayout tablayout = (TabLayout) findViewById(R.id.tablayout);
// 將ViewPager和TabLayout綁定
tablayout.setupWithViewPager(viewPager);
// 設置tab文本的沒有選中(第一個參數)和選中(第二個參數)的顏色
tablayout.setTabTextColors(getResources().getColor(R.color.dark_white),Color.WHITE);

總結

TabLayout實現tab導航效果比之前那些實現新聞資訊類app頂部tab導航效果更加簡單方便,技術在更新,咱們在進步,更多使用方法FQ查看官方文檔:

android開發官網:http://developer.android.com/index.html

Demo下載:http://download.csdn.net/detail/ydxlt/9354379

相關文章
相關標籤/搜索