自定义ViewGroup实现宽度自动换行

自定义ViewGroup

package com.fenghongzhang.day011;

import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;

public class FengGroup extends ViewGroup {

    int groupWidth,groupHeight;
    private static final String TAG = "FengGroup";

    public FengGroup(Context context) {
        super(context);
    }

    public FengGroup(Context context, AttributeSet attrs) {
        super(context, attrs);
    }


    //onMesure() ——计算childView的测量值以及模式,以及设置自己的宽和高。
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);

        int mode = MeasureSpec.getMode(widthMeasureSpec);
        int size = MeasureSpec.getSize(widthMeasureSpec);

        switch (mode){
            case MeasureSpec.EXACTLY: //
                Log.i(TAG, "onMeasure: ");
                groupWidth = size;
                break;
            case MeasureSpec.AT_MOST:
                Log.i(TAG, "onMeasure:111 ");
                groupWidth = 50;
                break;
        }

        int heightMode = MeasureSpec.getMode(heightMeasureSpec);
        int heightSize = MeasureSpec.getSize(heightMeasureSpec);

        switch (heightMode){
            case MeasureSpec.EXACTLY: //
                Log.i(TAG, "onMeasure: ");
                groupHeight = heightSize;
                break;
            case MeasureSpec.AT_MOST:
                Log.i(TAG, "onMeasure:111 ");
                groupHeight = 50;
                break;
        }

        setMeasuredDimension(groupWidth,groupHeight);

    }


    //通过getChildCount()获取子view数量,
    // getChildAt获取所有子View,
    //那个所有view 的宽的数据 相加
    //如果小于group的宽 横排
    //如果大于group的宽,竖排
    // 分别调用layout(int l, int t, int r, int b)确定每个子View的摆放位置。
    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        int childCountWidth = 0;
        int left = 0;
        //定义布局的.
        int childCount = getChildCount();
        for (int i = 0; i < childCount; i++) {
            View childAt = getChildAt(i);

            LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) childAt.getLayoutParams();
            childCountWidth += layoutParams.width;
            Log.i(TAG, "onLayout: "+layoutParams.width); //px
            Log.i(TAG, "onLayout: "+layoutParams.height);
            //摆放子View 的位置的.

            //父布局的宽和多个子布局的宽度想计算
            int width = getWidth();
            Log.i(TAG, "onLayout: "+width);

            if(width > childCountWidth){
                //横排
                Log.i(TAG, "onLayout: 横排");
                childAt.layout(left,0,layoutParams.width+left,layoutParams.height);
                left += layoutParams.width;
            }else{
                //竖排
                Log.i(TAG, "onLayout: 竖排 ");
                childAt.layout(0,layoutParams.height,layoutParams.width,layoutParams.height*2);
            }
        }
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
    }

    //实现一个布局的属性
    @Override
    public LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new LinearLayout.LayoutParams(getContext(),attrs);
    }
}

xml中的使用

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    tools:context=".MainActivity">

    <com.fenghongzhang.day011.FengGroup
        android:id="@+id/group"
        android:layout_width="250dp"
        android:background="@color/colorAccent"
        android:layout_height="match_parent"
        >

        <TextView
            android:layout_width="100dp"
            android:text="哈哈"
            android:background="@color/colorPrimaryDark"
            android:layout_height="100dp"></TextView>

        <TextView
            android:layout_width="100dp"
            android:text="嘿嘿"
            android:background="@color/colorPrimaryDark"
            android:layout_height="100dp"></TextView>

    </com.fenghongzhang.day011.FengGroup>


</LinearLayout>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值