CoordinatorLayout CollapsingToolbarLayout NestedScrollView

INSPN276~@C4UYRK@{ZBMNY.png

1501218221(1).jpg
   package slide.azheng.pers.coordinatorlayoutcollapsingtoolbarlayoutnestedscrollview;
   import android.graphics.Color;
   import android.support.design.widget.AppBarLayout;
   import android.support.v7.app.AppCompatActivity;
   import android.os.Bundle;
   import android.view.View;
   import android.widget.LinearLayout;
   import android.widget.TextView;

  public class MainActivity extends AppCompatActivity implements                  AppBarLayout.OnOffsetChangedListener {     private LinearLayout mLinearLayout_shrink;
  private TextView mTextView_name;
  private TextView mTextView_sex;
  private TextView mTextView_year;
  private int mMaskColor;
  private AppBarLayout appbarLayout_behavior;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
  private void initView() {
    appbarLayout_behavior= findViewById(R.id.appbarLayout_behavior);
    mLinearLayout_shrink = findViewById(R.id.mLinearLayout_shrink);
    mTextView_name = findViewById(R.id.mTextView_name);
    mTextView_sex = findViewById(R.id.mTextView_sex);
    mTextView_year = findViewById(R.id.mTextView_year);

    mMaskColor = getResources().getColor(R.color.colorWrite);
    appbarLayout_behavior.addOnOffsetChangedListener(this);
}
   
    initView();
}

//AppBarLayout的監(jiān)聽方法
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
    int offset = Math.abs(verticalOffset);
    int total = appBarLayout.getTotalScrollRange(); //偏移量
    int alphaOut = (255 - offset) < 0 ? 0 : 255 - offset;
    int maskColorOut = Color.argb(alphaOut, Color.red(mMaskColor),
            Color.green(mMaskColor), Color.blue(mMaskColor));
    if (offset <= total * 140 / 200) {
        mLinearLayout_shrink.setVisibility(View.VISIBLE);
    } else {
        mLinearLayout_shrink.setVisibility(View.GONE);
    }
    mTextView_name.setTextColor(maskColorOut);
    mTextView_sex.setHintTextColor(maskColorOut);
    mTextView_year.setTextColor(maskColorOut);
}}

XML

 <?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"
  xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbarLayout_behavior"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:background="#02A8F3"
    android:fitsSystemWindows="true">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/mCollapsingToolbarLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar_backTop"
            android:layout_width="match_parent"
            android:layout_height="56dp"
            android:background="#02A8F3"
            app:layout_collapseMode="pin">

            <TextView
                android:id="@+id/back_toolbar"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="16dp"
                android:text="返回"
                android:textColor="#fff"
                android:textSize="24sp" />

            <TextView
                android:id="@+id/exampaper_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="36dp"
                android:text="Title"
                android:textColor="#fff"
                android:textSize="19sp" />

        </android.support.v7.widget.Toolbar>

        <LinearLayout
            android:id="@+id/mLinearLayout_shrink"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:layout_marginTop="90dp"
            android:orientation="vertical"
            app:layout_collapseMode="parallax"
            app:layout_collapseParallaxMultiplier="0.7">

            <TextView
                android:id="@+id/exampaper_description"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="content"
                android:textColor="#fff"
                android:textSize="14sp" />

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="10dp"
                android:layout_marginTop="36dp">


                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true">

                    <TextView
                        android:id="@+id/mTextView_name"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentLeft="true"
                        android:maxLength="15"
                        android:text="name"
                        android:textColor="#fff"
                        android:textSize="12sp" />

                    <TextView
                        android:id="@+id/mTextView_sex"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_centerInParent="true"
                        android:maxLines="1"
                        android:text="男"
                        android:textColor="#fff"
                        android:textSize="12sp" />

                    <TextView
                        android:id="@+id/mTextView_year"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentRight="true"
                        android:text="13歲"
                        android:textColor="#fff"
                        android:textSize="12sp" />
                </RelativeLayout>
            </RelativeLayout>
        </LinearLayout>
    </android.support.design.widget.CollapsingToolbarLayout>

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


<android.support.v4.widget.NestedScrollView
    android:id="@+id/nestedScrollView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">


    <android.support.v7.widget.RecyclerView
        android:id="@+id/mRecyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </android.support.v7.widget.RecyclerView>

</android.support.v4.widget.NestedScrollView>


<android.support.design.widget.FloatingActionButton
    android:id="@+id/floatingActionButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:fabSize="normal"
    app:layout_anchor="@id/nestedScrollView"
    app:layout_anchorGravity="center_vertical|right|bottom"
    app:pressedTranslationZ="10dp"
    app:rippleColor="@color/colorAccent" />
 </android.support.design.widget.CoordinatorLayout>

NestedScrollView嵌套R(shí)ecyclerView滑動(dòng)沖突

 mRecyclerView.setNestedScrollingEnabled(false);  //添加一句這個(gè)就好
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市觉啊,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件断傲,死亡現(xiàn)場離奇詭異救赐,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)簇抵,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來射众,“玉大人碟摆,你說我怎么就攤上這事∵冻鳎” “怎么了典蜕?”我有些...
    開封第一講書人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長罗洗。 經(jīng)常有香客問我愉舔,道長,這世上最難降的妖魔是什么伙菜? 我笑而不...
    開封第一講書人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任轩缤,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘火的。我一直安慰自己壶愤,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開白布馏鹤。 她就那樣靜靜地躺著征椒,像睡著了一般。 火紅的嫁衣襯著肌膚如雪湃累。 梳的紋絲不亂的頭發(fā)上勃救,一...
    開封第一講書人閱讀 49,741評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音脱茉,去河邊找鬼剪芥。 笑死,一個(gè)胖子當(dāng)著我的面吹牛琴许,可吹牛的內(nèi)容都是我干的税肪。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼榜田,長吁一口氣:“原來是場噩夢啊……” “哼益兄!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起箭券,我...
    開封第一講書人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤净捅,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后辩块,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蛔六,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年废亭,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了国章。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡豆村,死狀恐怖液兽,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情掌动,我是刑警寧澤四啰,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站粗恢,受9級(jí)特大地震影響柑晒,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜眷射,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一匙赞、第九天 我趴在偏房一處隱蔽的房頂上張望恋追。 院中可真熱鬧,春花似錦罚屋、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至鱼鸠,卻和暖如春猛拴,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蚀狰。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來泰國打工愉昆, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人麻蹋。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓跛溉,卻偏偏與公主長得像,于是被迫代替她去往敵國和親扮授。 傳聞我的和親對(duì)象是個(gè)殘疾皇子芳室,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,734評(píng)論 25 707
  • 內(nèi)容抽屜菜單ListViewWebViewSwitchButton按鈕點(diǎn)贊按鈕進(jìn)度條TabLayout圖標(biāo)下拉刷新...
    皇小弟閱讀 46,720評(píng)論 22 664
  • 什么是CoordinatorLayout Google在 android.support.design 包中新增的...
    駱駝騎士閱讀 10,807評(píng)論 4 34
  • android在嵌套滑動(dòng)的時(shí)候會(huì)產(chǎn)生滑動(dòng)沖突。之前我也碰到刹勃,但是以前的筆記本丟失了堪侯,所以只能重新再寫一章。 一.會(huì)...
    鍵盤上的麒麟臂閱讀 6,203評(píng)論 1 13
  • 喜歡一個(gè)人荔仁,始于顏值伍宦,陷于才華,忠于人品乏梁,然后呢次洼,最好能執(zhí)子之手,將子拖走掌呜。 01 顏值 PK 才華 大部分人還沒...
    Ms顧初閱讀 367評(píng)論 14 8