最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

學(xué)習(xí)使用Material Design控件(四)Android實現(xiàn)標(biāo)題欄自動縮放、放大效果

 更新時間:2017年07月28日 11:09:21   作者:貴公子  
這篇文章主要為大家介紹了學(xué)習(xí)使用Material Design控件的詳細(xì)教程,Android實現(xiàn)標(biāo)題欄自動縮放、放大效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文要實現(xiàn)內(nèi)容移動時,標(biāo)題欄自動縮放/放大的效果,效果如下:


控件介紹

這次需要用到得新控件比較多,主要有以下幾個:

CoordinatorLayout
組織它的子views之間協(xié)作的一個Layout,它可以給子View切換提供動畫效果。
AppBarLayout
可以讓包含在其中的控件響應(yīng)被標(biāo)記了ScrollingViewBehavior的View的滾動事件
CollapsingToolbarLayout
可以控制包含在CollapsingToolbarLayout其中的控件,在響應(yīng)collapse時是移除屏幕和固定在最上面
TabLayout
結(jié)合ViewPager,實現(xiàn)多個TAB的切換的功能
NestedScrollView
與ScrollView基本相同,不過包含在NestedScrollView中的控件移動時才能時AppBarLayout縮放

Layout布局

<?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:layout_width=“match_parent”
  android:layout_height=“match_parent”
  android:fitsSystemWindows=“true”>

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

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

      <ImageView
        android:id=“@+id/ivImage”
        android:layout_width=“match_parent”
        android:layout_height=“match_parent”
        android:fitsSystemWindows=“true”
        android:scaleType=“centerCrop”
        android:src=“@drawable/book1”
        app:layout_collapseMode=“parallax”
        app:layout_collapseParallaxMultiplier=“0.7” />

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


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

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

  <LinearLayout
    android:layout_width=“match_parent”
    android:layout_height=“match_parent”
    android:orientation=“vertical”
    app:layout_behavior=“@string/appbar_scrolling_view_behavior”>

    <android.support.design.widget.TabLayout
      android:id=“@+id/sliding_tabs”
      android:layout_width=“match_parent”
      android:layout_height=“wrap_content”
      app:tabGravity=“fill”
      app:tabMode=“fixed” />

    <android.support.v4.view.ViewPager
      android:id=“@+id/viewpager”
      android:layout_width=“match_parent”
      android:layout_height=“match_parent” />
  </LinearLayout>
</android.support.design.widget.CoordinatorLayout>

CollapsingToolbarLayout和TabLayout的使用說明可以參考探索新的Android Material Design支持庫

代碼實現(xiàn)

//Toolbar
 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
 setSupportActionBar(toolbar);
 getSupportActionBar().setDisplayHomeAsUpEnabled(true);
 toolbar.setNavigationOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View view) {
     onBackPressed();
   }
 });

//使用CollapsingToolbarLayout后,title需要設(shè)置到CollapsingToolbarLayout上
 CollapsingToolbarLayout collapsingToolbar = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
 collapsingToolbar.setTitle("失控");

//設(shè)置ViewPager
 mViewPager = (ViewPager) findViewById(R.id.viewpager);
 setupViewPager(mViewPager);

//給TabLayout增加Tab, 并關(guān)聯(lián)ViewPager
 TabLayout tabLayout = (TabLayout) findViewById(R.id.sliding_tabs);
 tabLayout.addTab(tabLayout.newTab().setText("內(nèi)容簡介"));
 tabLayout.addTab(tabLayout.newTab().setText("作者簡介"));
 tabLayout.addTab(tabLayout.newTab().setText("目錄"));
 tabLayout.setupWithViewPager(mViewPager);

詳細(xì)代碼參見這里

項目源碼已發(fā)布到Github,Material Design新控件基本介紹完了,
下篇文章會結(jié)合豆瓣讀書的API,整合一下這些控件,做一個Demo。
源碼地址:MaterialDesignExample

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

湾仔区| 海淀区| 正镶白旗| 宿松县| 姜堰市| 新野县| 都安| 昌黎县| 伊金霍洛旗| 濉溪县| 开封市| 三江| 光泽县| 康平县| 旅游| 镇江市| 日喀则市| 临汾市| 商河县| 邵东县| 揭阳市| 石阡县| 增城市| 屏东市| 德化县| 芮城县| 惠安县| 鄂伦春自治旗| 洛南县| 三原县| 新田县| 贡嘎县| 大关县| 鹤岗市| 开封县| 赤城县| 波密县| 桃园县| 乌海市| 宁陵县| 枣庄市|