Android開發(fā)之流式布局(實現(xiàn)熱門標(biāo)簽效果)

又到了美好周末時間蒜鸡,由于更新博客的時間總是斷斷續(xù)續(xù),突然有個想法牢裳,想對博客進(jìn)行每十天一更逢防,不知道能不能合理的安排出時間來,嘗試著做看看吧蒲讯。
由于公司產(chǎn)品的迭代更新忘朝,這次UI設(shè)計師做出了個類似簡書熱門標(biāo)簽頁的效果,雖然谷歌官方已經(jīng)提供了一個很友好的彈性布局FlexboxLayout傳送門可以幫助我們實現(xiàn)這一效果判帮,但是強(qiáng)迫癥的我還是想要自己實現(xiàn)一波局嘁。

首先先來看下簡書上的實現(xiàn)效果:


簡書首頁熱門標(biāo)簽效果

下面是我自己仿寫的效果:


流式布局實現(xiàn)熱門標(biāo)簽效果

實現(xiàn)思路:
首先我們可以把這一標(biāo)簽頁的整體看成一個容器,然后容器內(nèi)有許多小控件(TextView晦墙,Button导狡,ImageView等),再來這些小控件成水平排列并且會根據(jù)自身的布局大小來決定是否換行偎痛。

我們很容易可以聯(lián)想到:
容器:自定義ViewGroup
小控件:原生自帶的控件
水平排列并根據(jù)自身大小換行:需要測量比對旱捧,布置位置

關(guān)于ViewGroup:

關(guān)于測量:
由于在容器ViewGroup里裝載的是原生控件(TextView,Button,ImageView等)枚赡,所以對于原生控件的屬性(內(nèi)部對齊方式氓癌,縮放方式,內(nèi)邊距等)我們不需要去做另外的處理贫橙,但這里涉及到了一個控件與控件之間的距離(外邊距margin)贪婉,所以我們需要讓ViewGroup去認(rèn)識這個標(biāo)簽,在原生的ViewGroup里是不支持margin的卢肃,ViewGroup里有兩個內(nèi)部類分別是ViewGroup.LayoutParams和ViewGroup. MarginLayoutParams疲迂,ViewGroup. MarginLayoutParams繼承于ViewGroup.LayoutParams也擴(kuò)展了支持的屬性,也就是magin屬性莫湘,所以我們需要重寫generateLayoutParams方法讓其返回MarginLayoutParams對象

    /**
     * 指定ViewGroup的LayoutParams
     *
     * @param attrs
     * @return
     */
    @Override
    public LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new MarginLayoutParams(getContext(), attrs);
    }

再來就是關(guān)于測量了尤蒿,在ViewGroup里測量是在onMeasure方法里實現(xiàn)的,由于LinearLayout和RelativeLayout等這些布局是繼承于ViewGroup的幅垮,這些布局?jǐn)[放控件的方式是不一樣的腰池,比如LinearLayout是呈線性擺放的,RelativeLayout是呈疊加擺放的忙芒,所以測量的方式也是不一樣的示弓,所以ViewGroup并沒有給我們做好子View的測量工作,而是讓我們?nèi)ブ貙憃nMeasure方法進(jìn)行測量呵萨,一個ViewGroup除非指定它的寬高精確值或者讓其充滿match_parent奏属,否則它是不知道自身大小應(yīng)該是多少的,所以我們需要對包含在ViewGroup里的子View進(jìn)行逐個測量潮峦,然后累加寬高來確定ViewGroup的寬高值拍皮。

       /**
        * Measure specification mode: The parent has not imposed any constraint
        * on the child. It can be whatever size it wants.
        */
       public static final int UNSPECIFIED = 0 << MODE_SHIFT;

       /**
        * Measure specification mode: The parent has determined an exact size
        * for the child. The child is going to be given those bounds regardless
        * of how big it wants to be.
        */
       public static final int EXACTLY     = 1 << MODE_SHIFT;

       /**
        * Measure specification mode: The child can be as large as it wants up
        * to the specified size.
        */
       public static final int AT_MOST     = 2 << MODE_SHIFT;

谷歌官方給我們提供了三種測量模式:
EXACTLY:精確大小,可以讓ViewGroup寬高為我們的指定值或者是充滿match_parent
AT_MOST:給出限定大小跑杭,子View可以在ViewGroup的允許范圍內(nèi)伸展大小
UNSPECIFIED:不指定限制,子View想要多大就給多大(幾乎很少使用)

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }

我們可以在onMeasure方法里通過MeasureSpec.getMode和MeasureSpec.getSize得到對應(yīng)的測量模式和測量尺寸咆耿,當(dāng)模式為EXACTLY的時候德谅,我們就可以直接應(yīng)用所測量的尺寸,但如果是其他模式萨螺,那么我們就只能自己去測量子View的尺寸了窄做。

關(guān)于布局:

@Override
    protected abstract void onLayout(boolean changed,
            int l, int t, int r, int b);

在自定義ViewGroup中提供了一個抽象方法onLayout需要我們對其實現(xiàn),在這里我們可以對子View的位置進(jìn)行確定排列慰技,ViewGroup通過onLayout 方法來確定View在容器中的位置椭盏,View通過layout方法來確認(rèn)自己在父容器中的位置,l吻商,t掏颊,r,b參數(shù)分別代表left,top乌叶,right盆偿,bottom,也就是左上和右下准浴。

好了事扭,由于篇幅的限制,有些東西不能講的太細(xì)乐横,有不清楚的朋友自行查閱相關(guān)資料補(bǔ)充吧求橄。

具體實現(xiàn):

我們開始來分析下今天要實現(xiàn)的效果:
1、首先我們需要去自定義一個ViewGroup葡公,然后再其內(nèi)包含各種子控件(這里是多個TextView)罐农,就好比LinearLayout包含子控件一樣。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <com.lcw.view.flowlayout.FlowLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="4dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:background="@drawable/shape_tv_blue"
            android:padding="5dp"
            android:text="歐美影視"
            android:textColor="@color/colorAccent" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:background="@drawable/shape_tv_blue"
            android:padding="5dp"
            android:text="婚姻育兒"
            android:textColor="@color/colorAccent" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:background="@drawable/shape_tv_blue"
            android:padding="5dp"
            android:text="散文"
            android:textColor="@color/colorAccent" />


        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:background="@drawable/shape_tv_blue"
            android:padding="5dp"
            android:text="程序員"
            android:textColor="@color/colorAccent" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:background="@drawable/shape_tv_blue"
            android:padding="5dp"
            android:text="大學(xué)生生活"
            android:textColor="@color/colorAccent" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:background="@drawable/shape_tv_blue"
            android:padding="5dp"
            android:text="運(yùn)營互助幫"
            android:textColor="@color/colorAccent" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:background="@drawable/shape_tv_blue"
            android:padding="5dp"
            android:text="設(shè)計"
            android:textColor="@color/colorAccent" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:background="@drawable/shape_tv_blue"
            android:padding="5dp"
            android:text="讀書"
            android:textColor="@color/colorAccent" />

    </com.lcw.view.flowlayout.FlowLayout>


</LinearLayout>

2匾南、然后我們在onMeasure里通過getChildCount拿到子View的個數(shù)啃匿,并利用measureChild對子View進(jìn)行遍歷測量,通過測量寬高的累加后得到再通過setMeasuredDimension設(shè)置ViewGroup的寬高蛆楞。

    /**
     * 測量所有子View大小,確定ViewGroup的寬高
     *
     * @param widthMeasureSpec
     * @param heightMeasureSpec
     */
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);

        //由于onMeasure會執(zhí)行多次,避免重復(fù)的計算控件個數(shù)和高度,這里需要進(jìn)行清空操作
        mLineViews.clear();
        mLineHeight.clear();

        //獲取測量的模式和尺寸大小
        int widthMode = MeasureSpec.getMode(widthMeasureSpec);
        int widthSize = MeasureSpec.getSize(widthMeasureSpec);
        int heightMode = MeasureSpec.getMode(heightMeasureSpec);
        int heightSize = MeasureSpec.getSize(heightMeasureSpec);


        //記錄ViewGroup真實的測量寬高
        int viewGroupWidth = 0;
        int viewGroupHeight = 0;

        if (widthMode == MeasureSpec.EXACTLY && heightMode == MeasureSpec.EXACTLY) {
            viewGroupWidth = widthSize;
            viewGroupHeight = heightSize;
        } else {
            //當(dāng)前所占的寬高
            int currentLineWidth = 0;
            int currentLineHeight = 0;

            //用來存儲每一行上的子View
            List<View> lineView = new ArrayList<View>();
            int childViewsCount = getChildCount();
            for (int i = 0; i < childViewsCount; i++) {
                View childView = getChildAt(i);
                //對子View進(jìn)行測量
                measureChild(childView, widthMeasureSpec, heightMeasureSpec);
                MarginLayoutParams marginLayoutParams = (MarginLayoutParams) childView.getLayoutParams();
                int childViewWidth = childView.getMeasuredWidth() + marginLayoutParams.leftMargin + marginLayoutParams.rightMargin;
                int childViewHeight = childView.getMeasuredHeight() + marginLayoutParams.topMargin + marginLayoutParams.bottomMargin;

                if (currentLineWidth + childViewWidth > widthSize) {
                    //當(dāng)前行寬+子View+左右外邊距>ViewGroup的寬度,換行
                    viewGroupWidth = Math.max(currentLineWidth, widthSize);
                    viewGroupHeight += currentLineHeight;
                    //添加行高
                    mLineHeight.add(currentLineHeight);
                    //添加行對象
                    mLineViews.add(lineView);

                    //new新的一行
                    lineView = new ArrayList<View>();
                    //添加行對象里的子View
                    lineView.add(childView);
                    currentLineWidth = childViewWidth;

                } else {
                    //當(dāng)前行寬+子View+左右外邊距<=ViewGroup的寬度,不換行
                    currentLineWidth += childViewWidth;
                    currentLineHeight = Math.max(currentLineHeight, childViewHeight);
                    //添加行對象里的子View
                    lineView.add(childView);
                }

                if (i == childViewsCount - 1) {
                    //最后一個子View的時候
                    //添加行對象
                    mLineViews.add(lineView);
                    viewGroupWidth = Math.max(childViewWidth, viewGroupWidth);
                    viewGroupHeight += childViewHeight;
                    //添加行高
                    mLineHeight.add(currentLineHeight);

                }
            }
        }
        setMeasuredDimension(viewGroupWidth, viewGroupHeight);
    }

3溯乒、然后我們在onLayout里去設(shè)置子View所在的位置。

    /**
     * 設(shè)置ViewGroup里子View的具體位置
     *
     * @param changed
     * @param l
     * @param t
     * @param r
     * @param b
     */
    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {


        int left = 0;
        int top = 0;
        //一共有幾行
        int lines = mLineViews.size();
        for (int i = 0; i < lines; i++) {
            //每行行高
            int lineHeight = mLineHeight.get(i);
            //行內(nèi)有幾個子View
            List<View> viewList = mLineViews.get(i);
            int views = viewList.size();

            for (int j = 0; j < views; j++) {
                View view = viewList.get(j);
                MarginLayoutParams marginLayoutParams = (MarginLayoutParams) view.getLayoutParams();
                int vl = left + marginLayoutParams.leftMargin;
                int vt = top + marginLayoutParams.topMargin;
                int vr = vl + view.getMeasuredWidth();
                int vb = vt + view.getMeasuredHeight();
                view.layout(vl, vt, vr, vb);
                left += view.getMeasuredWidth() + marginLayoutParams.leftMargin + marginLayoutParams.rightMargin;
            }
            left = 0;
            top += lineHeight;

        }
    }

說明:
1豹爹、List<List<View>>對象裆悄,View表示子View,List<View>表示每行有多少子View臂聋,List<List<View>>表示有幾行光稼。
2、List<Integer>對象孩等,用來記錄每行的高度艾君。
3、在onMeasure測量方法中肄方,我們在測量每個子View的寬度時把寬度進(jìn)行累加(包含子View的左右外邊距)冰垄,當(dāng)累加的寬度比最大寬度寬時,需要進(jìn)行換行权她,同時在測量每個子View的時候需要記錄它的高度虹茶,行高取最大高度的那個子View。
4隅要、這里還可以做一些擴(kuò)展的補(bǔ)充蝴罪,比如設(shè)置標(biāo)簽的點擊監(jiān)聽事件,解決ViewGroup內(nèi)邊距等步清,隨后會在Github庫上更新要门。

源碼下載:

這里附上源碼地址(歡迎Star,歡迎Fork):源碼下載

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市暂衡,隨后出現(xiàn)的幾起案子询微,更是在濱河造成了極大的恐慌,老刑警劉巖狂巢,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件茬故,死亡現(xiàn)場離奇詭異度帮,居然都是意外死亡抹锄,警方通過查閱死者的電腦和手機(jī)孽拷,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來斩个,“玉大人胯杭,你說我怎么就攤上這事∈苌叮” “怎么了做个?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長滚局。 經(jīng)常有香客問我居暖,道長,這世上最難降的妖魔是什么藤肢? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任太闺,我火速辦了婚禮,結(jié)果婚禮上嘁圈,老公的妹妹穿的比我還像新娘省骂。我一直安慰自己,他們只是感情好最住,可當(dāng)我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布钞澳。 她就那樣靜靜地躺著,像睡著了一般涨缚。 火紅的嫁衣襯著肌膚如雪轧粟。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天仗岖,我揣著相機(jī)與錄音,去河邊找鬼览妖。 笑死轧拄,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的讽膏。 我是一名探鬼主播檩电,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了俐末?” 一聲冷哼從身側(cè)響起料按,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎卓箫,沒想到半個月后载矿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡烹卒,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年闷盔,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片旅急。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡逢勾,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出藐吮,到底是詐尸還是另有隱情溺拱,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布谣辞,位于F島的核電站迫摔,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏潦闲。R本人自食惡果不足惜攒菠,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望歉闰。 院中可真熱鬧辖众,春花似錦、人聲如沸和敬。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽昼弟。三九已至啤它,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間舱痘,已是汗流浹背变骡。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留芭逝,地道東北人塌碌。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像旬盯,于是被迫代替她去往敵國和親台妆。 傳聞我的和親對象是個殘疾皇子翎猛,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,697評論 2 351

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