继承ViewGroup,实现简单的TagLayout

效果图

image.png

目前没有拖拽效果,下一篇会实现拖拽等功能。

view的绘制流程:

1.从整体来看

  • 从根view开始调用measure,递归调用每一个view的measure,得到每一个view的测量大小
  • 从根view开始调用layout,递归调用每一个view的layout,把每一个view的位置和大小作为参数传递给view。
    2.以一个view来看
  • 首先我们开发者在xml中设置每一个view的layout。
  • 父view拿到开发者设置的layout,结合自己的可用空间,计算出子view的实际可用空间的范围。
  • 子view根据自己的特性,计算出自己期望的大小。
  • 父view根据子view的期望大小,计算出子view的实际位置和大小。
  • 子view调用layout,保存自己的位置和大小。如果子view是viewgroup还会调用onlayout去设置子子view的位置和大小。

大致思路:

  • 1.首先每一个子view的测量大小。
  • 2.根据父view的剩余宽度,判断是否需要换行。
  • 3.设置子view的具体位置和大小。

代码

**
 * 使用ViewGroup来做一个Taglayout。
 */
public class TagLayout extends ViewGroup {

    //每行固定的行间距
    private static final float  FONT_SPACE = ViewUtils.dp2px(8);
    //每个标题固定的左右间距
    private static final float  LETTER_SPACE = ViewUtils.dp2px(5);
    //子view的大小和位置集合。
    ArrayList<Rect> childPositionList = new ArrayList<>();
    //已经使用的高度
    private int heightUsed = (int)FONT_SPACE;
    //固定的宽度
    private int width = 0;
    //当前行中,最高的宽度。
    private int maxHeight = 0;
    //当前行中,已经使用的宽度
    private int widthUsed = (int)LETTER_SPACE;
    public TagLayout(Context context) {
        super(context);
    }
    public TagLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
    public TagLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    //测量每一个子view的大小,测量自己的大小
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        width = MeasureSpec.getSize(widthMeasureSpec);
        //super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        //调用每一个omMeasure,让他们测量自己的宽高,然后我们就能拿到他们的测量值。
        int childCount = getChildCount();
        for (int i =0;i<childCount;i++){
            View childView = getChildAt(i);
            measureChildWithMargins(childView,widthMeasureSpec,0,heightMeasureSpec,heightUsed);
            int childWidth = childView.getMeasuredWidth();
            int childHeight = childView.getMeasuredHeight();

            //判断是否需要换行。在已经使用的宽度加当前子view的宽度,大于自己本身的宽度时换行。
            if((widthUsed + childWidth)>width){
                //这时就要换行了。换行的话,使用已宽度 = 0,已使用高度+上一行中最高的高度,当前行最高的高度 = 0;
                widthUsed = (int)LETTER_SPACE;
                heightUsed += maxHeight + FONT_SPACE;
                maxHeight = 0;
            }
            //设置Rect
            Rect rect = new Rect();

            rect.left = widthUsed;
            rect.top = heightUsed;
            rect.right = widthUsed + childWidth ;
            rect.bottom = heightUsed + childHeight;
            childPositionList.add(rect);
            widthUsed += childWidth + LETTER_SPACE;
            maxHeight = Math.max(maxHeight,childHeight);
        }
        //最后设置自己的测量宽高
        setMeasuredDimension(width,heightUsed+maxHeight);
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        int childCount = getChildCount();
        for (int i =0;i<childCount;i++){
            View childView = getChildAt(i);
            Rect rectF = childPositionList.get(i);
            childView.layout(rectF.left,rectF.top,rectF.right,rectF.bottom);
        }
    }

    @Override
    public LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new MarginLayoutParams(getContext(),attrs);
    }
}

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.xdw.myapplication.myview.TagLayout
        android:id="@+id/vpv"
        android:hint="MaterialEditText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="欧美影视" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="婚姻育儿" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="散文" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="程序员" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="大学生生活" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="运营互助帮" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="设计" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="读书" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="发现" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="关注" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="IT讯息" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="故事" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="旅行-在路上" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="手绘" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="山东省" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="自然科普" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="湖北省" />

        <com.xdw.myapplication.myview.ColoredTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="湖南省" />
        
    </com.xdw.myapplication.myview.TagLayout>

</LinearLayout>

public class ColoredTextView extends android.support.v7.widget.AppCompatTextView {
    private static final int[] COLORS = {
            Color.parseColor("#E91E63"),
            Color.parseColor("#673AB7"),
            Color.parseColor("#3F51B5"),
            Color.parseColor("#2196F3"),
            Color.parseColor("#009688"),
            Color.parseColor("#FF9800"),
            Color.parseColor("#FF5722"),
            Color.parseColor("#795548")
    };
    private static final int[] TEXT_SIZES = {
            16, 16, 16
    };
    private static final Random random = new Random();
    private static final int CORNER_RADIUS = (int) ViewUtils.dp2px(4);
    private static final int X_PADDING = (int) ViewUtils.dp2px(16);
    private static final int Y_PADDING = (int) ViewUtils.dp2px(8);

    Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);

    public ColoredTextView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    {
        setTextColor(Color.WHITE);
        setTextSize(TEXT_SIZES[random.nextInt(3)]);
        paint.setColor(COLORS[random.nextInt(COLORS.length)]);
        setPadding(X_PADDING, Y_PADDING, X_PADDING, Y_PADDING);
    }

    @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
    @Override
    protected void onDraw(Canvas canvas) {
        canvas.drawRoundRect(0, 0, getWidth(), getHeight(), CORNER_RADIUS, CORNER_RADIUS, paint);
        super.onDraw(canvas);
    }
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,372评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,368评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,415评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,157评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,171评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,125评论 1 297
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,028评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,887评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,310评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,533评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,690评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,411评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,004评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,659评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,812评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,693评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,577评论 2 353

推荐阅读更多精彩内容