Android新控件之MotionLayout ,個人主頁背景漸變文字旋轉(zhuǎn)效果<五>

關(guān)聯(lián)滑動效果.gif

近年來,越來越多的類似博客主頁頁面 頂部背景圖搭配文字出現(xiàn)各種各樣的效果,例如頂部懸浮,背景色變換 文字移動,控件移動等效果,原先 使用CoordinatorLayout 控件監(jiān)聽 移動變化然后再給各個控件設(shè)置動畫以及屬性,來完成實(shí)現(xiàn)效果

MotionLayout 出現(xiàn)后更方便控制各個動畫的聯(lián)動,處理多個動畫以及屬性的協(xié)調(diào)變化更舒暢,更方便的實(shí)現(xiàn)這種頁面的效果.

期望:類似博客首頁 伴隨滑動實(shí)現(xiàn)如下效果

  1. 頭像北京漸變透明,
  2. 文字旋轉(zhuǎn)90°
  3. 指定寬度懸浮

1. Layout.xml布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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:background="@color/white"
    android:fitsSystemWindows="false">

    <!-- 頂部布局   -->
    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/app_layout"
        android:layout_width="match_parent"
        android:layout_height="300dp">

        <!--      minHeight: 最小高度  -->
        <!--      background: 背景色  -->
        <!--      layoutDescription : 配置文件-->
        <androidx.constraintlayout.motion.widget.MotionLayout

            android:id="@+id/ml"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/colorAccent"
            android:fitsSystemWindows="false"
            android:minHeight="60dp"
            android:theme="@style/AppTheme.AppBarOverlay"
            app:layoutDescription="@xml/scene_coordinator_layout01"
            app:layout_scrollFlags="scroll|enterAlways|snap|exitUntilCollapsed"
            tools:ignore="MotionLayoutInvalidSceneFileReference">

            <ImageView
                android:id="@+id/backgroundIcon"
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:scaleType="centerCrop"
                android:src="@mipmap/roard" />

            <TextView
                android:id="@+id/tvName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="測試文字,旋轉(zhuǎn)了90°"
                android:textColor="#FFF"
                android:textSize="16dp"
                android:transformPivotX="0dp"
                android:transformPivotY="0dp" />

        </androidx.constraintlayout.motion.widget.MotionLayout>

    </com.google.android.material.appbar.AppBarLayout>
    <!-- 移動的控件 -->
    <androidx.core.widget.NestedScrollView
        android:id="@+id/scrollable"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="20dp"
            android:text="@string/large_text" />

    </androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

2. MotionScene scene_coordinator_layout01.xml布局

<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:motion="http://schemas.android.com/apk/res-auto">

    <Transition
        motion:constraintSetEnd="@+id/end"
        motion:constraintSetStart="@+id/start"
        motion:motionInterpolator="linear"></Transition>


    <ConstraintSet android:id="@+id/start">

        <Constraint
            android:id="@+id/backgroundIcon"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:alpha="1.0"
            motion:layout_constraintBottom_toBottomOf="parent">

        </Constraint>
        <Constraint
            android:layout_marginLeft="20dp"
            android:id="@+id/tvName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:rotation="-90.0"
            android:layout_marginStart="18dp"
            android:layout_marginBottom="18dp"
            motion:layout_constraintBottom_toBottomOf="@+id/backgroundIcon"
            motion:layout_constraintStart_toStartOf="parent" />
    </ConstraintSet>


    <ConstraintSet android:id="@+id/end">

        <Constraint
            android:id="@id/backgroundIcon"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:alpha="0.2"
            motion:layout_constraintBottom_toBottomOf="parent"></Constraint>
        <Constraint

            android:id="@id/tvName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="18dp"
            android:layout_marginBottom="18dp"
            android:rotation="0.0"
            motion:layout_constraintBottom_toBottomOf="@+id/backgroundIcon"
            motion:layout_constraintStart_toStartOf="parent" />
    </ConstraintSet>


</MotionScene>

3.代碼

package com.wu.material

import android.annotation.SuppressLint
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.constraintlayout.motion.widget.MotionLayout
import com.google.android.material.appbar.AppBarLayout

/**
 * @author wkq
 *
 * @date 2022年01月24日 13:56
 *
 *@des
 *
 */

class CoordinatorLayoutActivity : AppCompatActivity() {

    @SuppressLint("RestrictedApi")
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_mothion_coordinator_layout)
        //顯示路徑
        var motionLayout = findViewById<MotionLayout>(R.id.ml)
        motionLayout.setDebugMode(MotionLayout.DEBUG_SHOW_PATH)


        var appBarLayout = findViewById<AppBarLayout>(R.id.app_layout)
        appBarLayout.addOnOffsetChangedListener(object : AppBarLayout.OnOffsetChangedListener {
            override fun onOffsetChanged(appBarLayout: AppBarLayout?, verticalOffset: Int) {
                //綁定 MotionLayout偏移量
                motionLayout.progress = -verticalOffset / appBarLayout?.totalScrollRange?.toFloat()!!
            }
        })
    }


}

總結(jié)

實(shí)現(xiàn)了博客頁面一些常見的聯(lián)動動畫,代碼簡單 執(zhí)行流暢.要實(shí)現(xiàn)博客頁面面的需求可以參考這種實(shí)現(xiàn)方式

參考文獻(xiàn)

1.Google的MotionLayout介紹說明

2.MotionLayout的文檔簡介

3.MotionLayout 源碼地址

4. 源碼地址

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市岂傲,隨后出現(xiàn)的幾起案子展氓,更是在濱河造成了極大的恐慌,老刑警劉巖灌砖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡无畔,警方通過查閱死者的電腦和手機(jī)宅粥,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門参袱,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人秽梅,你說我怎么就攤上這事抹蚀。” “怎么了企垦?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵环壤,是天一觀的道長。 經(jīng)常有香客問我钞诡,道長郑现,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任荧降,我火速辦了婚禮接箫,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘朵诫。我一直安慰自己辛友,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布剪返。 她就那樣靜靜地躺著废累,像睡著了一般邓梅。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上邑滨,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天日缨,我揣著相機(jī)與錄音,去河邊找鬼掖看。 笑死殿遂,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的乙各。 我是一名探鬼主播墨礁,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼耳峦!你這毒婦竟也來了恩静?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤蹲坷,失蹤者是張志新(化名)和其女友劉穎驶乾,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體循签,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡级乐,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了县匠。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片风科。...
    茶點(diǎn)故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖乞旦,靈堂內(nèi)的尸體忽然破棺而出贼穆,到底是詐尸還是另有隱情,我是刑警寧澤兰粉,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布故痊,位于F島的核電站,受9級特大地震影響玖姑,放射性物質(zhì)發(fā)生泄漏愕秫。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一焰络、第九天 我趴在偏房一處隱蔽的房頂上張望戴甩。 院中可真熱鬧,春花似錦舔琅、人聲如沸等恐。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽课蔬。三九已至,卻和暖如春郊尝,著一層夾襖步出監(jiān)牢的瞬間二跋,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工流昏, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留扎即,地道東北人。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓况凉,卻偏偏與公主長得像谚鄙,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子刁绒,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評論 2 345

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