自定義ViewGroup_標(biāo)題欄的懸浮吸頂漸變效果

之前幫朋友寫(xiě)了這樣的一個(gè)效果:標(biāo)題欄中的元素隨著屏幕的滑動(dòng)發(fā)生漸變的效果枪眉,有文字大小的漸變也有透明度和距離的漸變等,后面沒(méi)有及時(shí)更新上來(lái)献联,今天補(bǔ)一下巴粪。效果圖如下:

思路 + 原理

OK,先來(lái)說(shuō)下思路受扳,很容易就能想到圖中漸變的效果是根據(jù)滑動(dòng)監(jiān)聽(tīng)一點(diǎn)點(diǎn)動(dòng)態(tài)變化的携龟,這里我們就可以監(jiān)聽(tīng)NestedScrollView的滾動(dòng)(or其他兔跌,我這里主頁(yè)用的是NestedScrollView)勘高。
原理:在FrameLayout中放一個(gè)LinearLayout,置于底部坟桅,然后設(shè)置LinearLayout距離頂部一段距離华望,假設(shè)marginTop是50dp,只要在監(jiān)聽(tīng)滾動(dòng)的時(shí)候動(dòng)態(tài)改變這個(gè)marginTop的值就好了仅乓,這是整體LinearLayout上移的效果實(shí)現(xiàn)赖舟,至于文字的大小和透明度的改變,也是同樣的原理夸楣,根據(jù)滾動(dòng)距離做出同步修改即可宾抓。為了容易理解,我畫(huà)了一張示意草圖豫喧,看了即可一目了然石洗。

OK,接下來(lái)放出xml的布局代碼:

布局:
<?xml version="1.0" encoding="utf-8"?>
<com.zhuyong.dogdemo.CustomFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/coordinator_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.NestedScrollView
        android:id="@+id/sc"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

                ********//省略

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

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/colorPrimary"
        android:gravity="bottom"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/child_root_marginTop"
            android:gravity="center_vertical"
            android:minHeight="50dp"
            android:paddingLeft="12dp"
            android:paddingTop="5dp"
            android:paddingRight="12dp"
            android:paddingBottom="5dp">

            <TextView
                android:id="@+id/tv_title"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="標(biāo)題"
                android:textColor="#FFFFFF"
                android:textSize="@dimen/text_size_30sp"
                android:textStyle="bold" />

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:onClick="scanCode"
                android:orientation="vertical">

                <ImageView
                    android:layout_width="30dp"
                    android:layout_height="30dp"
                    android:src="@drawable/icon_scan" />

                <TextView
                    android:id="@+id/tv_scan"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="@dimen/text_right_marginTop"
                    android:text="掃一掃"
                    android:textColor="#FFFFFF"
                    android:textSize="12sp" />

            </LinearLayout>

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="12dp"
                android:gravity="center"
                android:onClick="invitationCode"
                android:orientation="vertical">

                <ImageView
                    android:layout_width="30dp"
                    android:layout_height="30dp"
                    android:src="@drawable/icon_invinte" />

                <TextView
                    android:id="@+id/tv_invitation"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="@dimen/text_right_marginTop"
                    android:text="邀請(qǐng)碼"
                    android:textColor="#FFFFFF"
                    android:textSize="12sp" />

            </LinearLayout>

        </LinearLayout>

    </FrameLayout>

</com.zhuyong.dogdemo.CustomFrameLayout>

接下來(lái)就是自定義最外層的FrameLayout了紧显,前戲不多說(shuō)了讲衫,直接上主要代碼:

1、獲取子控件孵班,初始化相關(guān)變量

/**
 * 獲取第一個(gè)childView轉(zhuǎn)化為NestedScrollView
 */
NestedScrollView mSestedScrollView = (NestedScrollView) getChildAt(0);
/**
 * 獲取第二個(gè)childView,也就是我們的Toolbar部分
 */
final ViewGroup mViewToolbarRoot = (ViewGroup) getChildAt(1);
final ViewGroup mViewChildRoot = (ViewGroup) mViewToolbarRoot.getChildAt(0);
final TextView mTvTitle = mViewChildRoot.findViewById(R.id.tv_title);
final TextView mTvScan = mViewChildRoot.findViewById(R.id.tv_scan);
final TextView mTvInvitation = mViewChildRoot.findViewById(R.id.tv_invitation);
/**
 * 獲取整個(gè)狀態(tài)欄的高度涉兽,用來(lái)控制一些其他變量
 */
final int mHeaderHeight = mViewToolbarRoot.getMeasuredHeight();
/**
 * 設(shè)置NestedScrollView的paddingTop值防止被mViewToolbarRoot遮蓋
 */
mSestedScrollView.setPadding(getPaddingLeft(), getPaddingTop() + mHeaderHeight, getPaddingRight(), getPaddingBottom());
final FrameLayout.LayoutParams paramsChildRoot = (FrameLayout.LayoutParams) mViewChildRoot.getLayoutParams();
final LinearLayout.LayoutParams paramsChildTv = (LinearLayout.LayoutParams) mTvInvitation.getLayoutParams();
2、根據(jù)scrollY動(dòng)態(tài)更新LayoutParams篙程、透明度枷畏、文字大小等值

還記得我們那個(gè)50dp的topMaginHeight吧,這里就根據(jù)它的大小和scrollY作比較判斷滾動(dòng)距離虱饿,來(lái)確定是否需要漸變拥诡。
如果滑動(dòng)距離大于topMaginHeight,狀態(tài)固定郭厌,不做改變袋倔。

mTvScan.setAlpha(0);
mTvInvitation.setAlpha(0);
mTvTitle.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize / 2);
paramsChildRoot.topMargin = 0;
mViewChildRoot.setLayoutParams(paramsChildRoot);
/**
 * 控制右邊文字的移動(dòng)
 */
paramsChildTv.topMargin = -mHeaderHeight;
mTvScan.setLayoutParams(paramsChildTv);
mTvInvitation.setLayoutParams(paramsChildTv);

當(dāng)scrollY <= topMaginHeight時(shí):

float scale = (float) scrollY / topMaginHeight;
/**
 * 控制右邊文字的透明度
 */
mTvScan.setAlpha(1 - offset * scale);
mTvInvitation.setAlpha(1 - offset * scale);
/**
 * 控制標(biāo)題文字的大小
 */
scale = (1 - scale) > 0.5f ? (1 - scale) : 0.5f;
mTvTitle.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * scale);
/**
 * 控制整個(gè)頭布局的高度
 */
paramsChildRoot.topMargin = topMaginHeight - scrollY;
mViewChildRoot.setLayoutParams(paramsChildRoot);
/**
 * 控制右邊文字的移動(dòng)
 */
paramsChildTv.topMargin = (int) (-scrollY * offset + textMaginTop);
mTvScan.setLayoutParams(paramsChildTv);
mTvInvitation.setLayoutParams(paramsChildTv);
源碼
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.widget.NestedScrollView;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.LinearLayout;
import android.widget.TextView;


/**
 * 自定義FrameLayout實(shí)現(xiàn)自定義伸縮及懸浮效果
 * 作者:zhuyong on 2019/3/31 20:21
 * 郵箱:99305919@qq.com
 * 希望每天叫醒你的不是鬧鐘而是夢(mèng)想
 */
public class CustomFrameLayout extends FrameLayout {

    private Context mContext;

    public CustomFrameLayout(@NonNull Context context) {
        this(context, null);
    }

    public CustomFrameLayout(@NonNull Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public CustomFrameLayout(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        mContext = context;
    }

    private void initView() {

        /**
         * 獲取第一個(gè)childView轉(zhuǎn)化為NestedScrollView
         */
        NestedScrollView mSestedScrollView = (NestedScrollView) getChildAt(0);
        /**
         * 獲取第二個(gè)childView,也就是我們的Toolbar部分
         */
        final ViewGroup mViewToolbarRoot = (ViewGroup) getChildAt(1);
        final ViewGroup mViewChildRoot = (ViewGroup) mViewToolbarRoot.getChildAt(0);
        final TextView mTvTitle = mViewChildRoot.findViewById(R.id.tv_title);
        final TextView mTvScan = mViewChildRoot.findViewById(R.id.tv_scan);
        final TextView mTvInvitation = mViewChildRoot.findViewById(R.id.tv_invitation);

        /**
         * 獲取整個(gè)狀態(tài)欄的高度,用來(lái)控制一些其他變量
         */
        final int mHeaderHeight = mViewToolbarRoot.getMeasuredHeight();

        /**
         * 設(shè)置NestedScrollView的paddingTop值防止被mViewToolbarRoot遮蓋
         */
        mSestedScrollView.setPadding(getPaddingLeft(), getPaddingTop() + mHeaderHeight, getPaddingRight(), getPaddingBottom());

        final FrameLayout.LayoutParams paramsChildRoot = (FrameLayout.LayoutParams) mViewChildRoot.getLayoutParams();
        final LinearLayout.LayoutParams paramsChildTv = (LinearLayout.LayoutParams) mTvInvitation.getLayoutParams();

        final int textMaginTop = (int) mContext.getResources().getDimension(R.dimen.text_right_marginTop);//文字距離圖標(biāo)的距離
        final int topMaginHeight = (int) mContext.getResources().getDimension(R.dimen.child_root_marginTop);//標(biāo)題距離頂部距離
        final float textSize = (int) mContext.getResources().getDimension(R.dimen.text_size_30sp);//標(biāo)題文字大小

        if (topMaginHeight <= 0) {
            return;
        }

        //梯度值折柠,用來(lái)調(diào)整相關(guān)的速度
        final float offset = 1.7f;

        mSestedScrollView.setOnScrollChangeListener(new NestedScrollView.OnScrollChangeListener() {
            @Override
            public void onScrollChange(NestedScrollView nestedScrollView, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {

                if (scrollY <= topMaginHeight) {

                    float scale = (float) scrollY / topMaginHeight;

                    /**
                     * 控制右邊文字的透明度
                     */
                    mTvScan.setAlpha(1 - offset * scale);
                    mTvInvitation.setAlpha(1 - offset * scale);

                    /**
                     * 控制標(biāo)題文字的大小
                     */
                    scale = (1 - scale) > 0.5f ? (1 - scale) : 0.5f;
                    mTvTitle.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * scale);

                    /**
                     * 控制整個(gè)頭布局的高度
                     */
                    paramsChildRoot.topMargin = topMaginHeight - scrollY;
                    mViewChildRoot.setLayoutParams(paramsChildRoot);


                    /**
                     * 控制右邊文字的移動(dòng)
                     */
                    paramsChildTv.topMargin = (int) (-scrollY * offset + textMaginTop);
                    mTvScan.setLayoutParams(paramsChildTv);
                    mTvInvitation.setLayoutParams(paramsChildTv);

                } else {
                    /**
                     * 當(dāng)滑動(dòng)距離大于topMaginHeight宾娜,狀態(tài)固定
                     */
                    mTvScan.setAlpha(0);
                    mTvInvitation.setAlpha(0);

                    mTvTitle.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize / 2);

                    paramsChildRoot.topMargin = 0;
                    mViewChildRoot.setLayoutParams(paramsChildRoot);

                    /**
                     * 控制右邊文字的移動(dòng)
                     */
                    paramsChildTv.topMargin = -mHeaderHeight;
                    mTvScan.setLayoutParams(paramsChildTv);
                    mTvInvitation.setLayoutParams(paramsChildTv);

                }
            }
        });
    }

    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);
        /**
         * 在ViewGroup位置擺放完成之后,開(kāi)始處理
         */
        initView();
    }
}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末扇售,一起剝皮案震驚了整個(gè)濱河市前塔,隨后出現(xiàn)的幾起案子嚣艇,更是在濱河造成了極大的恐慌,老刑警劉巖华弓,帶你破解...
    沈念sama閱讀 218,858評(píng)論 6 508
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件食零,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡寂屏,警方通過(guò)查閱死者的電腦和手機(jī)贰谣,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,372評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)迁霎,“玉大人吱抚,你說(shuō)我怎么就攤上這事】剂” “怎么了秘豹?”我有些...
    開(kāi)封第一講書(shū)人閱讀 165,282評(píng)論 0 356
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)昌粤。 經(jīng)常有香客問(wèn)我既绕,道長(zhǎng),這世上最難降的妖魔是什么涮坐? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,842評(píng)論 1 295
  • 正文 為了忘掉前任凄贩,我火速辦了婚禮,結(jié)果婚禮上膊升,老公的妹妹穿的比我還像新娘怎炊。我一直安慰自己,他們只是感情好廓译,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,857評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布评肆。 她就那樣靜靜地躺著,像睡著了一般非区。 火紅的嫁衣襯著肌膚如雪瓜挽。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,679評(píng)論 1 305
  • 那天征绸,我揣著相機(jī)與錄音久橙,去河邊找鬼。 笑死管怠,一個(gè)胖子當(dāng)著我的面吹牛淆衷,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播渤弛,決...
    沈念sama閱讀 40,406評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼祝拯,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起佳头,我...
    開(kāi)封第一講書(shū)人閱讀 39,311評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤鹰贵,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后康嘉,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體碉输,經(jīng)...
    沈念sama閱讀 45,767評(píng)論 1 315
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,945評(píng)論 3 336
  • 正文 我和宋清朗相戀三年亭珍,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了敷钾。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 40,090評(píng)論 1 350
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡块蚌,死狀恐怖闰非,靈堂內(nèi)的尸體忽然破棺而出膘格,到底是詐尸還是另有隱情峭范,我是刑警寧澤,帶...
    沈念sama閱讀 35,785評(píng)論 5 346
  • 正文 年R本政府宣布瘪贱,位于F島的核電站纱控,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏菜秦。R本人自食惡果不足惜甜害,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,420評(píng)論 3 331
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望球昨。 院中可真熱鬧尔店,春花似錦、人聲如沸主慰。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,988評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)共螺。三九已至该肴,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間藐不,已是汗流浹背匀哄。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,101評(píng)論 1 271
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留雏蛮,地道東北人涎嚼。 一個(gè)月前我還...
    沈念sama閱讀 48,298評(píng)論 3 372
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像挑秉,于是被迫代替她去往敵國(guó)和親法梯。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,033評(píng)論 2 355

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