亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 系統 > Android > 正文

Android實現熱門標簽的流式布局

2020-04-11 11:06:48
字體:
來源:轉載
供稿:網友

一、概述:
在日常的app使用中,我們會在android 的app中看見 熱門標簽等自動換行的流式布局,今天,我們就來看看如何
自定義一個類似熱門標簽那樣的流式布局吧(源碼下載在下面最后給出)
類似的自定義布局。下面我們就來詳細介紹流式布局的應用特點以及用的的技術點:
1.流式布局的特點以及應用場景
    特點:當上面一行的空間不夠容納新的TextView時候,
    才開辟下一行的空間
 原理圖:

    

    場景:主要用于關鍵詞搜索或者熱門標簽等場景
2.自定義ViewGroup,重點重寫下面兩個方法
    1)、onMeasure:測量子view的寬高,設置自己的寬和高
    2)、onLayout:設置子view的位置
    onMeasure:根據子view的布局文件中屬性,來為子view設置測量模式和測量值
    測量=測量模式+測量值;
    測量模式有3種:
    EXACTLY:表示設置了精確的值,一般當childView設置其寬、高為精確值、match_parent時,ViewGroup會將其設置為EXACTLY;
    AT_MOST:表示子布局被限制在一個最大值內,一般當childView設置其寬、高為wrap_content時,ViewGroup會將其設置為AT_MOST;
    UNSPECIFIED:表示子布局想要多大就多大,一般出現在AadapterView的item的heightMode中、ScrollView的childView的heightMode中;此種模式比較少見。
3.LayoutParams
    ViewGroup LayoutParams :每個 ViewGroup 對應一個 LayoutParams; 即 ViewGroup -> LayoutParams
    getLayoutParams 不知道轉為哪個對應的LayoutParams ,其實很簡單,就是如下:
    子View.getLayoutParams 得到的LayoutParams對應的就是 子View所在的父控件的LayoutParams;
    例如,LinearLayout 里面的子view.getLayoutParams ->LinearLayout.LayoutParams
    所以 咱們的FlowLayout 也需要一個LayoutParams,由于上面的效果圖是子View的 margin,
    所以應該使用MarginLayoutParams。即FlowLayout->MarginLayoutParams
4.最后來看看實現的最終效果圖:

 

二、熱門標簽的流式布局的實現:
1. 自定義熱門標簽的ViewGroup實現
  根據上面的技術分析,自定義類繼承于ViewGroup,并重寫 onMeasure和onLayout等方法。具體實現代碼如下:

<font color="#362e2b"><font style="background-color:rgb(255, 255, 255)"><font face="Arial"><font style="font-size:14px">package com.czm.flowlayout; import java.util.ArrayList;import java.util.List; import android.content.Context;import android.util.AttributeSet;import android.view.View;import android.view.ViewGroup;/** *  * @author caizhiming * @created on 2015-4-13 */public class XCFlowLayout extends ViewGroup{   //存儲所有子View  private List<List<View>> mAllChildViews = new ArrayList<>();  //每一行的高度  private List<Integer> mLineHeight = new ArrayList<>();     public XCFlowLayout(Context context) {    this(context, null);    // TODO Auto-generated constructor stub  }  public XCFlowLayout(Context context, AttributeSet attrs) {    this(context, attrs, 0);    // TODO Auto-generated constructor stub  }  public XCFlowLayout(Context context, AttributeSet attrs, int defStyle) {    super(context, attrs, defStyle);    // TODO Auto-generated constructor stub  }  @Override  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {    // TODO Auto-generated method stub         //父控件傳進來的寬度和高度以及對應的測量模式    int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);    int modeWidth = MeasureSpec.getMode(widthMeasureSpec);    int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);    int modeHeight = MeasureSpec.getMode(heightMeasureSpec);         //如果當前ViewGroup的寬高為wrap_content的情況    int width = 0;//自己測量的 寬度    int height = 0;//自己測量的高度    //記錄每一行的寬度和高度    int lineWidth = 0;    int lineHeight = 0;         //獲取子view的個數    int childCount = getChildCount();    for(int i = 0;i < childCount; i ++){      View child = getChildAt(i);      //測量子View的寬和高      measureChild(child, widthMeasureSpec, heightMeasureSpec);      //得到LayoutParams      MarginLayoutParams lp = (MarginLayoutParams) getLayoutParams();      //子View占據的寬度      int childWidth = child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin;      //子View占據的高度      int childHeight = child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin;      //換行時候      if(lineWidth + childWidth > sizeWidth){        //對比得到最大的寬度        width = Math.max(width, lineWidth);        //重置lineWidth        lineWidth = childWidth;        //記錄行高        height += lineHeight;        lineHeight = childHeight;      }else{//不換行情況        //疊加行寬        lineWidth += childWidth;        //得到最大行高        lineHeight = Math.max(lineHeight, childHeight);      }      //處理最后一個子View的情況      if(i == childCount -1){        width = Math.max(width, lineWidth);        height += lineHeight;      }    }    //wrap_content    setMeasuredDimension(modeWidth == MeasureSpec.EXACTLY ? sizeWidth : width,        modeHeight == MeasureSpec.EXACTLY ? sizeHeight : height);    super.onMeasure(widthMeasureSpec, heightMeasureSpec);  }     @Override  protected void onLayout(boolean changed, int l, int t, int r, int b) {    // TODO Auto-generated method stub    mAllChildViews.clear();    mLineHeight.clear();    //獲取當前ViewGroup的寬度    int width = getWidth();         int lineWidth = 0;    int lineHeight = 0;    //記錄當前行的view    List<View> lineViews = new ArrayList<View>();    int childCount = getChildCount();    for(int i = 0;i < childCount; i ++){      View child = getChildAt(i);      MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();      int childWidth = child.getMeasuredWidth();      int childHeight = child.getMeasuredHeight();             //如果需要換行      if(childWidth + lineWidth + lp.leftMargin + lp.rightMargin > width){        //記錄LineHeight        mLineHeight.add(lineHeight);        //記錄當前行的Views        mAllChildViews.add(lineViews);        //重置行的寬高        lineWidth = 0;        lineHeight = childHeight + lp.topMargin + lp.bottomMargin;        //重置view的集合        lineViews = new ArrayList();      }      lineWidth += childWidth + lp.leftMargin + lp.rightMargin;      lineHeight = Math.max(lineHeight, childHeight + lp.topMargin + lp.bottomMargin);      lineViews.add(child);    }    //處理最后一行    mLineHeight.add(lineHeight);    mAllChildViews.add(lineViews);         //設置子View的位置    int left = 0;    int top = 0;    //獲取行數    int lineCount = mAllChildViews.size();    for(int i = 0; i < lineCount; i ++){      //當前行的views和高度      lineViews = mAllChildViews.get(i);      lineHeight = mLineHeight.get(i);      for(int j = 0; j < lineViews.size(); j ++){        View child = lineViews.get(j);        //判斷是否顯示        if(child.getVisibility() == View.GONE){          continue;        }        MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();        int cLeft = left + lp.leftMargin;        int cTop = top + lp.topMargin;        int cRight = cLeft + child.getMeasuredWidth();        int cBottom = cTop + child.getMeasuredHeight();        //進行子View進行布局        child.layout(cLeft, cTop, cRight, cBottom);        left += child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin;      }      left = 0;      top += lineHeight;    }       }  /**   * 與當前ViewGroup對應的LayoutParams   */  @Override  public LayoutParams generateLayoutParams(AttributeSet attrs) {    // TODO Auto-generated method stub         return new MarginLayoutParams(getContext(), attrs);  }}</font></font></font></font>

2.相關的布局文件:
引用自定義控件:

<font color="#362e2b"><font style="background-color:rgb(255, 255, 255)"><font face="Arial"><font style="font-size:14px"><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:id="@+id/container"  android:layout_width="match_parent"  android:layout_height="match_parent" >   <com.czm.flowlayout.XCFlowLayout    android:id="@+id/flowlayout"    android:layout_width="match_parent"    android:layout_height="match_parent" >   </com.czm.flowlayout.XCFlowLayout> </RelativeLayout></font></font></font></font>

TextView的樣式文件:

<font color="#362e2b"><font style="background-color:rgb(255, 255, 255)"><font face="Arial"><font style="font-size:14px"><?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" >  <solid android:color="#666666" />  <corners android:radius="10dp" />  <padding     android:left="5dp"    android:right="5dp"    android:top="5dp"    android:bottom="5dp"    /> </shape></font></font></font></font>

三、使用該自定義布局控件類
最后,如何使用該自定義的熱門標簽控件類呢?很簡單,請看下面實例代碼:

<font color="#362e2b"><font style="background-color:rgb(255, 255, 255)"><font face="Arial"><font style="font-size:14px">package com.czm.flowlayout; import android.app.Activity;import android.graphics.Color;import android.os.Bundle;import android.view.ViewGroup.LayoutParams;import android.view.ViewGroup.MarginLayoutParams;import android.widget.TextView;/** *  * @author caizhiming * @created on 2015-4-13 */public class MainActivity extends Activity {   private String mNames[] = {      "welcome","android","TextView",      "apple","jamy","kobe bryant",      "jordan","layout","viewgroup",      "margin","padding","text",      "name","type","search","logcat"  };  private XCFlowLayout mFlowLayout;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);         initChildViews();       }  private void initChildViews() {    // TODO Auto-generated method stub    mFlowLayout = (XCFlowLayout) findViewById(R.id.flowlayout);    MarginLayoutParams lp = new MarginLayoutParams(        LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);    lp.leftMargin = 5;    lp.rightMargin = 5;    lp.topMargin = 5;    lp.bottomMargin = 5;    for(int i = 0; i < mNames.length; i ++){      TextView view = new TextView(this);      view.setText(mNames[i]);      view.setTextColor(Color.WHITE);      view.setBackgroundDrawable(getResources().getDrawable(R.drawable.textview_bg));      mFlowLayout.addView(view,lp);    }  } }</font></font></font></font>

以上就是本文的全部內容,下面在給大家一個小福利:

// 流式布局 話不多說,比較簡單,注釋都寫的很清楚import java.util.ArrayList;import java.util.List;import android.content.Context;import android.util.AttributeSet;import android.view.View;import android.view.ViewGroup;/** *  * @author Mr.Himan * @version 1.0<br> *     2015年11月4日 11:12:06 <br> *     流式布局 設置MarginTop 和MarginLeft有效 MarginRight 暫未實現 */public class FlowLayout extends ViewGroup { /** * 存儲所有的子View */ private List<List<View>> mAllChildViews = new ArrayList<List<View>>(); /** * 存儲每一行的高度 */ private List<Integer> mLineHeight = new ArrayList<Integer>(); public FlowLayout(Context context) { this(context, null); } public FlowLayout(Context context, AttributeSet attrs) { this(context, attrs, 0); } public FlowLayout(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { mAllChildViews.clear(); mLineHeight.clear(); // 獲取當前ViewGroup的寬度 int width = getWidth(); int lineWidth = 0; int lineHeight = 0; // 記錄當前行的view List<View> lineViews = new ArrayList<View>(); int childCount = getChildCount(); for (int i = 0; i < childCount; i++) {  View child = getChildAt(i);  MarginLayoutParams lp = (MarginLayoutParams) child   .getLayoutParams();  int childWidth = child.getMeasuredWidth();  int childHeight = child.getMeasuredHeight();  // 如果需要換行  if (childWidth + lineWidth + lp.leftMargin + lp.rightMargin > width) {  // 記錄LineHeight  mLineHeight.add(lineHeight);  // 記錄當前行的Views  mAllChildViews.add(lineViews);  // 重置行的寬高  lineWidth = 0;  lineHeight = childHeight + lp.topMargin + lp.bottomMargin;  // 重置view的集合  lineViews = new ArrayList();  }  lineWidth += childWidth + lp.leftMargin + lp.rightMargin;  lineHeight = Math.max(lineHeight, childHeight + lp.topMargin   + lp.bottomMargin);  lineViews.add(child); } // 處理最后一行 mLineHeight.add(lineHeight); mAllChildViews.add(lineViews); MarginLayoutParams params = (MarginLayoutParams) this.getLayoutParams(); // 設置子View的位置 int left = 0; // 添加marginTop int top = 0 + params.topMargin; // 獲取行數 int lineCount = mAllChildViews.size(); for (int i = 0; i < lineCount; i++) {  // 當前行的views和高度  lineViews = mAllChildViews.get(i);  lineHeight = mLineHeight.get(i);  for (int j = 0; j < lineViews.size(); j++) {  // 為每一列設置marginLeft  if (j == 0) {   left = 0 + params.leftMargin;  }  View child = lineViews.get(j);  // 判斷是否顯示  if (child.getVisibility() == View.GONE) {   continue;  }  MarginLayoutParams lp = (MarginLayoutParams) child   .getLayoutParams();  int cLeft = left + lp.leftMargin;  int cTop = top + lp.topMargin;  int cRight = cLeft + child.getMeasuredWidth();  int cBottom = cTop + child.getMeasuredHeight();  // 進行子View進行布局  child.layout(cLeft, cTop, cRight, cBottom);  left += child.getMeasuredWidth() + lp.leftMargin   + lp.rightMargin;  }  left = 0;  top += lineHeight; } } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { // 父控件傳進來的寬度和高度以及對應的測量模式 int sizeWidth = MeasureSpec.getSize(widthMeasureSpec); int modeWidth = MeasureSpec.getMode(widthMeasureSpec); int sizeHeight = MeasureSpec.getSize(heightMeasureSpec); int modeHeight = MeasureSpec.getMode(heightMeasureSpec); // 如果當前ViewGroup的寬高為wrap_content的情況 int width = 0;// 自己測量的 寬度 int height = 0;// 自己測量的高度 // 記錄每一行的寬度和高度 int lineWidth = 0; int lineHeight = 0; // 獲取子view的個數 int childCount = getChildCount();   for (int i = 0; i < childCount; i++) {  View child = getChildAt(i);  // 測量子View的寬和高  measureChild(child, widthMeasureSpec, heightMeasureSpec);  // 得到LayoutParams  MarginLayoutParams params = (MarginLayoutParams) child   .getLayoutParams();  // 子View占據的寬度  int childWidth = child.getMeasuredWidth() + params.leftMargin   + params.rightMargin;  // 子View占據的高度  int childHeight = child.getMeasuredHeight() + params.bottomMargin   + params.topMargin;  // 換行時候  if (lineWidth + childWidth > sizeWidth) {  // 對比得到最大的寬度  width = Math.max(width, lineWidth);  // 重置lineWidth  lineWidth = childWidth;  // 記錄行高  height += lineHeight;  lineHeight = childHeight;  } else {  // 不換行情況  // 疊加行寬  lineWidth += childWidth;  // 得到最大行高  lineHeight = Math.max(lineHeight, childHeight);  }  // 處理最后一個子View的情況  if (i == childCount - 1) {  width = Math.max(width, lineWidth);  height += lineHeight;  } } setMeasuredDimension(modeWidth == MeasureSpec.EXACTLY ? sizeWidth  : width, modeHeight == MeasureSpec.EXACTLY ? sizeHeight  : height); } /** * 與當前ViewGroup對應的LayoutParams */ @Override public LayoutParams generateLayoutParams(AttributeSet attrs) { return new MarginLayoutParams(getContext(), attrs); }}

希望本文所述對大家學習Android實現熱門標簽的流式布局有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
久久久999国产| 亚洲福利视频在线| 亚洲欧美精品伊人久久| 久久精视频免费在线久久完整在线看| 国产女精品视频网站免费| 午夜精品美女自拍福到在线| 久久国产精品久久久久久| 清纯唯美日韩制服另类| 日韩精品高清在线| 色多多国产成人永久免费网站| 欧美国产中文字幕| 一区二区三区视频在线| 亚洲国产精品系列| 91高清在线免费观看| 免费av一区二区| 亚洲精品电影网在线观看| 亚洲aⅴ男人的天堂在线观看| 日韩欧美中文字幕在线观看| 97视频在线免费观看| 欧美性猛交xxxx富婆| 欧美日韩综合视频| 91深夜福利视频| 国产精品精品一区二区三区午夜版| 久久久成人精品| 日韩在线观看免费高清| 欧美日韩国产一区中文午夜| 精品亚洲男同gayvideo网站| 欧美成人四级hd版| 欧美视频中文字幕在线| 亚洲欧美另类人妖| 亚洲国产成人久久综合| 疯狂做受xxxx高潮欧美日本| 欧美激情第1页| 久久偷看各类女兵18女厕嘘嘘| 日韩av在线影视| 欧美亚洲国产视频| 国产精品pans私拍| 成人中心免费视频| 久久久免费观看视频| 中文字幕欧美国内| 日本一区二区不卡| 亚洲成人久久久| 欧美大片免费观看| 成人免费视频网| 亚洲人成网站免费播放| 91免费精品视频| 国产亚洲精品久久久久久| 日本一区二区不卡| 亚洲人成电影在线播放| 亚洲深夜福利视频| 69精品小视频| 92版电视剧仙鹤神针在线观看| 久久久综合免费视频| 97精品在线观看| 国产精品9999| 最近2019中文免费高清视频观看www99| 亚洲国产精品人久久电影| 日韩精品视频在线播放| 全亚洲最色的网站在线观看| 黑人巨大精品欧美一区二区三区| 欧美午夜精品久久久久久久| 日韩欧美中文字幕在线观看| 久久久久久国产精品久久| 日韩视频免费在线| 欧美色视频日本高清在线观看| 一区二区三区天堂av| 亚洲欧美资源在线| 性亚洲最疯狂xxxx高清| 国产精品丝袜久久久久久不卡| 亚洲欧美在线免费| 亚洲欧美日韩中文视频| 91精品视频网站| 国产精品十八以下禁看| 日韩在线中文字幕| 欧美高清在线视频观看不卡| 国产欧美精品va在线观看| 欧美色视频日本高清在线观看| 精品中文字幕在线观看| 色综合91久久精品中文字幕| 久久亚洲成人精品| 色综合五月天导航| 日本精品久久久| 九九热在线精品视频| 91精品啪在线观看麻豆免费| 国产亚洲精品高潮| 福利二区91精品bt7086| 国产精品久久久久久中文字| 日韩成人网免费视频| 18性欧美xxxⅹ性满足| 中文字幕欧美精品日韩中文字幕| 色老头一区二区三区在线观看| 亚洲精品456在线播放狼人| 亚洲男人第一网站| 国产精品免费电影| 久久福利网址导航| 亚洲天堂视频在线观看| 亚洲精品99久久久久| 欧美一级淫片aaaaaaa视频| 上原亚衣av一区二区三区| 日本高清久久天堂| 亚洲成年人影院在线| 精品动漫一区二区三区| 在线视频欧美日韩精品| 国产视频精品一区二区三区| 日韩av在线最新| 亚州国产精品久久久| 久久久精品影院| 狠狠综合久久av一区二区小说| 国产福利精品在线| 国产精品免费视频久久久| 亚洲成人aaa| 亚洲视频日韩精品| 日韩av中文字幕在线免费观看| 国内精品一区二区三区| 2020欧美日韩在线视频| 欧美精品videos另类日本| 欧美大胆在线视频| 91精品视频网站| 亚洲一级黄色片| 高清欧美电影在线| 久久久国产一区二区三区| 国产精品日韩在线观看| 日韩中文字幕视频| 亚洲香蕉av在线一区二区三区| 亚洲精品乱码久久久久久按摩观| 自拍偷拍亚洲欧美| 日韩一级裸体免费视频| 亚洲人成电影在线| 日韩天堂在线视频| 91精品久久久久久久久久另类| 成人欧美一区二区三区在线湿哒哒| 91av视频在线| 国产在线不卡精品| 日本一区二区三区四区视频| 精品中文视频在线| 中文字幕亚洲综合久久| 欧美专区在线播放| 欧美在线www| 57pao国产成人免费| 国产精品com| 中文字幕在线国产精品| 日本不卡免费高清视频| 久久久精品电影| 日韩黄在线观看| 欧美一级bbbbb性bbbb喷潮片| 日韩成人免费视频| 日韩欧美国产黄色| 国产精品一区二区三区免费视频| 97久久精品国产| 精品国内自产拍在线观看| 欧美大片欧美激情性色a∨久久| 日韩精品在线影院| 91精品国产91久久久久久不卡| 色偷偷91综合久久噜噜| 日韩免费在线电影| 欧美日韩国产精品一区二区不卡中文| 亚洲激情在线观看| 98精品国产高清在线xxxx天堂| 国产精品久久久久77777| 亚洲欧美三级在线| 在线播放国产一区中文字幕剧情欧美| 欧美噜噜久久久xxx| 欧美午夜影院在线视频| 欧美精品在线极品|