學(xué)習(xí)使用Material Design控件(四)Android實(shí)現(xiàn)標(biāo)題欄自動(dòng)縮放、放大效果
本文要實(shí)現(xiàn)內(nèi)容移動(dòng)時(shí),標(biāo)題欄自動(dòng)縮放/放大的效果,效果如下:

控件介紹
這次需要用到得新控件比較多,主要有以下幾個(gè):
CoordinatorLayout
組織它的子views之間協(xié)作的一個(gè)Layout,它可以給子View切換提供動(dòng)畫(huà)效果。
AppBarLayout
可以讓包含在其中的控件響應(yīng)被標(biāo)記了ScrollingViewBehavior的View的滾動(dòng)事件
CollapsingToolbarLayout
可以控制包含在CollapsingToolbarLayout其中的控件,在響應(yīng)collapse時(shí)是移除屏幕和固定在最上面
TabLayout
結(jié)合ViewPager,實(shí)現(xiàn)多個(gè)TAB的切換的功能
NestedScrollView
與ScrollView基本相同,不過(guò)包含在NestedScrollView中的控件移動(dòng)時(shí)才能時(shí)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的使用說(shuō)明可以參考探索新的Android Material Design支持庫(kù)
代碼實(shí)現(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)容簡(jiǎn)介"));
tabLayout.addTab(tabLayout.newTab().setText("作者簡(jiǎn)介"));
tabLayout.addTab(tabLayout.newTab().setText("目錄"));
tabLayout.setupWithViewPager(mViewPager);
詳細(xì)代碼參見(jiàn)這里
項(xiàng)目源碼已發(fā)布到Github,Material Design新控件基本介紹完了,
下篇文章會(huì)結(jié)合豆瓣讀書(shū)的API,整合一下這些控件,做一個(gè)Demo。
源碼地址:MaterialDesignExample
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android編程實(shí)現(xiàn)監(jiān)聽(tīng)EditText變化的方法
這篇文章主要介紹了Android編程實(shí)現(xiàn)監(jiān)聽(tīng)EditText變化的方法,涉及Android針對(duì)EditText的相關(guān)操作技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-11-11
輕松實(shí)現(xiàn)Rxjava定時(shí)器功能
這篇文章主要為大家詳細(xì)介紹了Rxjava實(shí)現(xiàn)定時(shí)器功能的兩種方式,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-06-06
Android 實(shí)現(xiàn)仿網(wǎng)絡(luò)直播彈幕功能詳解及實(shí)例
這篇文章主要介紹了Android 實(shí)現(xiàn)仿網(wǎng)絡(luò)直播彈幕功能詳解的相關(guān)資料,并附實(shí)例代碼及實(shí)現(xiàn)效果圖,需要的朋友可以參考下2016-11-11
詳解Android studio ndk配置cmake開(kāi)發(fā)native C
這篇文章主要介紹了詳解Android studio ndk配置cmake開(kāi)發(fā)native C,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2017-09-09

