『Material Design入門學習筆記』TabLayout與NestedScrollView(附demo)

不知不覺,這已是『Material Design入門學習筆記』專題第六篇文章了,結束了這篇文章,這個專題,會暫時告一段落。但不是結束,也許僅僅是另外一個開始。
『Material Design入門學習筆記』前言
『Material Design入門學習筆記』動畫(含demo)
『Material Design 入門學習筆記』主題與 AppCompatActivity(附 demo)
『Material Design入門學習筆記』RecyclerView與CardView(附demo)
『Material Design 入門學習筆記』CollapsingToolbarLayout 與 AppBarLayout(附 demo)
demo下載javascript


前言

首先要說明,這篇文章一樣會用到CoordinatorLayout和AppBarLayout,這兩個組件的相關知識,能夠參考上一篇文章:
[『Material Design 入門學習筆記』CollapsingToolbarLayout 與 AppBarLayout(附 demo)]java

TabLayout

佈局文件

與以前的CollapsingToolbarLayout相似:android

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                                 xmlns:app="http://schemas.android.com/apk/res-auto"
                                                 android:id="@+id/main_content"
                                                 android:layout_width="match_parent"
                                                 android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:layout_scrollFlags="scroll|enterAlways" />

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabIndicatorColor="#ffffff"
            app:tabMode="scrollable"/>

    </android.support.design.widget.AppBarLayout>


    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        />


</android.support.design.widget.CoordinatorLayout>複製代碼

具體介紹一下TabLayout中的一些參數:git

  • app:tabIndicatorColor="@color/white" 下方滾動條的下劃線顏色
  • app:tabSelectedTextColor="@color/gray" tab被選中後,文字的顏色
  • app:tabTextColor="@color/white" tab默認的文字顏色
  • app:tabMode能夠設置爲fixed和scrollable。當設置爲scrollable表示此TabLayout中當子view數量過多,超出屏幕邊界時候,能夠經過滑動見到那些不可見的子view,fix則不能夠滑動。
  • app:tabGravity能夠設置爲fill和center。若是TabLayout中的子view數量較少時,若是選擇fill是自動充滿,若是選擇center則居中顯示。github

    代碼

    首先先看一下Activity中的代碼:app

    private void initViews(){
          mTabLayout = (TabLayout)findViewById(R.id.tabs);
          mViewPager = (ViewPager)findViewById(R.id.viewpager);
          nestedFragment = new NestedScrollFragment();
          emptyFragment1 = new FirstEmptyFragment();
          emptyFragment2 = new FirstEmptyFragment();
          ArrayList<Fragment> fragments = new ArrayList<>();
          fragments.add(nestedFragment);
          fragments.add(emptyFragment1);
          fragments.add(emptyFragment2);
          ArrayList<String> titles = new ArrayList<>();
          titles.add("NestedScroll");
          titles.add("empty1");
          titles.add("empty2");
          FragmentsAdapter mAdapter = new FragmentsAdapter(getSupportFragmentManager(),fragments,titles);
          mTabLayout.addTab(mTabLayout.newTab().setText(titles.get(0)));
          mTabLayout.addTab(mTabLayout.newTab().setText(titles.get(1)));
          mTabLayout.addTab(mTabLayout.newTab().setText(titles.get(2)));
          mViewPager.setAdapter(mAdapter);
          mTabLayout.setupWithViewPager(mViewPager);
          mTabLayout.setupWithViewPager(mViewPager,false);
      }複製代碼

    首先viewpager須要一個Adapter,這個等下說。而後咱們須要一個tab的名字,這個能夠經過mTabLayout.newTab().setText進行設置,一樣還能夠經過mTabLayout.newTab().setIcon()設置圖片。而後經過TabLayout的addTab方法進行添加。
    而後爲TabLayout設置對應的viewpager便可。
    這裏給出FragmentsAdapter中的代碼:ide

    public class FragmentsAdapter extends FragmentPagerAdapter {
    private List<Fragment> list_fragment;                     
    private List<String> list_Title;                           
    public FragmentsAdapter(FragmentManager fm, List<Fragment> list_fragment, List<String> list_Title) {
          super(fm);
          this.list_fragment = list_fragment;
          this.list_Title = list_Title;
      }
    
      @Override
      public Fragment getItem(int position) {
          return list_fragment.get(position);
      }
    
      @Override
      public int getCount() {
          return list_Title.size();
      }
    
      @Override
      public CharSequence getPageTitle(int position) {
    
          return list_Title.get(position % list_Title.size());
      }
    }複製代碼

    對於代碼中提到過的fragment能夠本身寫,也能夠參考個人demo,下面給一張圖:佈局

NestedScrollView

關於NestedScrollView,我並無發現與ScrollView有什麼明顯的差異或優點,NestedScrollView的存在是指爲了適配MD的其餘組件而存在的,RecyclerView代替了ListView,而NestedScrollView代替了ScrollView,他們兩個均可以用來跟ToolBar交互,在CoordinatorLayout中實現摺疊滑動等效果。post

使用NestedScrollView

<?xml version="1.0" encoding="utf-8"?>

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                                 xmlns:app="http://schemas.android.com/apk/res-auto"
                                                 android:id="@+id/main_content"
                                                 android:layout_width="match_parent"
                                                 android:layout_height="match_parent"
                                                 android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="256dp"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp">

            <ImageView
                android:id="@+id/backdrop"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:fitsSystemWindows="true"
                android:src="@drawable/logo"
                app:layout_collapseMode="parallax"
                />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:layout_collapseMode="pin" />

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:layout_marginTop="2dp"
        android:id="@+id/nestedscroll"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">
        <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:id="@+id/recycler_nested"
            android:layout_height="match_parent"></android.support.v7.widget.RecyclerView>
    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>複製代碼

此次仍是用了CollapsingToolbarLayout,由於這個的摺疊效果比較明顯。而後看下代碼:學習

for (int i = 0 ; i< 200;i++){
            list.add("item:"+i);
        }
        adapter = new CardListAdapter(this,list);
        recyclerView = (RecyclerView)findViewById(R.id.recycler_nested);
        recyclerView.setAdapter(adapter);
        recyclerView.setLayoutManager(new LinearLayoutManager(this));
        recyclerView.setItemAnimator(new DefaultItemAnimator());複製代碼

這些代碼在前面的例子中都介紹過,沒見過的能夠參考:
『Material Design入門學習筆記』RecyclerView與CardView(附demo)
下面看一下樣圖:

沒有上拉的時候

向上滑動的時候

不使用NestedScrollView

若是不使用的狀況下,會是什麼樣呢,首先須要修改一下佈局文件:

<?xml version="1.0" encoding="utf-8"?>

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                                 xmlns:app="http://schemas.android.com/apk/res-auto"
                                                 android:id="@+id/main_content"
                                                 android:layout_width="match_parent"
                                                 android:layout_height="match_parent"
                                                 android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="256dp"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp">

            <ImageView
                android:id="@+id/backdrop"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:fitsSystemWindows="true"
                android:src="@drawable/logo"
                app:layout_collapseMode="parallax"
                />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:layout_collapseMode="pin" />

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>


        <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:id="@+id/recycler_nested"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:layout_height="match_parent"></android.support.v7.widget.RecyclerView>


</android.support.design.widget.CoordinatorLayout>複製代碼

去掉了NestedScrollView,並把RecyclerView添加了app:layout_behavior="@string/appbar_scrolling_view_behavior"
這是發現也沒什麼問題,跟剛纔區別不大,這是由於RecyclerView自帶了ScrollView。可是若是放一個線性佈局呢?
試一下,創建一個線性佈局,裏面添加多個TextView。佈局以下:

<?xml version="1.0" encoding="utf-8"?>

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                                 xmlns:app="http://schemas.android.com/apk/res-auto"
                                                 android:id="@+id/main_content"
                                                 android:layout_width="match_parent"
                                                 android:layout_height="match_parent"
                                                 android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="256dp"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp">

            <ImageView
                android:id="@+id/backdrop"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:fitsSystemWindows="true"
                android:src="@drawable/logo"
                app:layout_collapseMode="parallax"
                />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:layout_collapseMode="pin" />

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

    <!--<android.support.v4.widget.NestedScrollView-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="match_parent"-->
        <!--android:fillViewport="true"-->
        <!--android:layout_marginTop="2dp"-->
        <!--android:id="@+id/nestedscroll"-->
        <!--app:layout_behavior="@string/appbar_scrolling_view_behavior">-->
        <!--<android.support.v7.widget.RecyclerView-->
            <!--android:layout_width="match_parent"-->
            <!--android:id="@+id/recycler_nested"-->
            <!--app:layout_behavior="@string/appbar_scrolling_view_behavior"-->
            <!--android:layout_height="match_parent"></android.support.v7.widget.RecyclerView>-->
    <!--</android.support.v4.widget.NestedScrollView>-->
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"

    >
    <TextView
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="test"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="test"/>
</LinearLayout>
    </ScrollView>
</android.support.design.widget.CoordinatorLayout>複製代碼

效果如圖:


這是咱們發現,向上滑動,因爲ScrollView的緣由也會滾動,可是跟AppBarLayout的交互動畫沒有了。只能在AppBarLayout上向上互動,纔能有摺疊的效果。
因此這也就說明了NestedScrollView與ScrollView的區別,那就是,對於Material Design動畫和組件的適配。

總結

『Material Design入門學習筆記』暫時就寫到這,後面若是發現好的東西還會進行補充,可是近期內,就寫到這裏了,有疑問的朋友歡迎給我留言指正,或者關注個人公衆號留言:

相關文章
相關標籤/搜索