流式布局的实现

其实我们在Android开发的很多情况下看到过流式布局的使用,比如商品的分类展示,搜索提示信息等。流式布局的实现原理其实就是,通过动态的向GridView中添加控件,在GridView中通过判断空间的数量来达到动态分行,以及动态设定高度的效果。


我们可以通过一个自定义的GridView来实现流式布局。


流式布局的显示效果:



自定义的GridView的代码如下:

public class MyFlowLayout extends ViewGroup{

    private static final String TAG = "FlowLayout";
    // 存储所有行的View,按行记录。每行存在一个List集合中。
    private List<List<View>> mAllViews = new ArrayList<List<View>>();
    // 记录每一行的最大高度
    private List<Integer> mLineHeight = new ArrayList<Integer>();

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

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

    /**
     * @param widthMeasureSpec   宽度的尺寸说明
     * @param heightMeasureSpec 高度的尺寸说明
     */
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);

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

        // 定义一个不断累加的总高度,当布局高度设置为wrap_content时使用该高度。一般都是将高度设置为wrap_content        int totalHeight = 0;
        // 定义一个不断累加的变量。存放当前行控件的宽度总和
        int lineWidth = 0;
        // 获取当前行控件中最高的那个控件的高度
        int lineHeight = 0;
        // 遍历每个子控件
        int childCount = getChildCount();
        for (int i = 0; i < childCount; i++) {
            View childView = getChildAt(i);
            // 获取每个子控件的宽度和高度
            measureChild(childView, widthMeasureSpec, heightMeasureSpec);
            // 得到每个子控件的布局参数
            MarginLayoutParams lp = (MarginLayoutParams) childView
                    .getLayoutParams();
            // 获取当前子控件的实际宽度和高度
            int childWidth = childView.getMeasuredWidth() + lp.leftMargin + lp.rightMargin;
            int childHeight = childView.getMeasuredHeight() + lp.topMargin + lp.bottomMargin;

            if (lineWidth + childWidth > widthSize) {
                lineWidth = childWidth; // 重新开启新行,开始记录
                // 叠加当前高度,
                totalHeight += lineHeight;
                // 开启记录下一行的高度
                lineHeight = childHeight;
            } else {
                // 累加lineWidth,lineHeight取最大高度
                lineWidth += childWidth;
                lineHeight = Math.max(lineHeight, childHeight);
            }
            // 如果是最后一个,则将当前记录的最大宽度和当前lineWidth做比较
            if (i == childCount - 1) {
                totalHeight += lineHeight;
            }
            setMeasuredDimension(widthSize,
                    (heightMode == MeasureSpec.EXACTLY) ? heightSize : totalHeight);
        }
    }
    /**
     * @param changed
     *            该参数指出当前ViewGroup的尺寸或者位置是否发生了改变
     * @param left
     *            top right bottom 当前ViewGroup相对于其父控件的坐标位置
     */
    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        mAllViews.clear();
        mLineHeight.clear();
        // 获取当前View的宽度
        int layoutWidth = getWidth();

        // 定义每行的宽度和高度
        int lineWidth = 0;
        int lineHeight = 0;
        // 存储每一行所有的childView
        List<View> lineViews = new ArrayList<View>();
        // 遍历所有的子控件
        int childCount = getChildCount();
        for (int i = 0; i < childCount; i++) {
            View childView = getChildAt(i);
            MarginLayoutParams lp = (MarginLayoutParams) childView.getLayoutParams();
            int childWidth = childView.getMeasuredWidth() + lp.leftMargin + lp.rightMargin;
            int childHeight = childView.getMeasuredHeight() + lp.leftMargin + lp.rightMargin;

            // 如果已经需要换行
            if (lineWidth + childWidth > layoutWidth) {
                // 记录这一行所有的View以及最大高度
                mLineHeight.add(lineHeight);
                // 将当前行的childView保存,然后开启新的ArrayList保存下一行的childView
                mAllViews.add(lineViews);
                lineWidth = 0;// 重置行宽
                lineViews = new ArrayList<View>();
            }
            // 如果不需要换行,则累加
            lineWidth += childWidth;
            lineHeight = Math.max(lineHeight, childHeight);
            lineViews.add(childView);
        }
        // 记录最后一行
        mLineHeight.add(lineHeight);
        mAllViews.add(lineViews);

        int mLeft = 0;
        int mTop = 0;
        // 得到总行数
        int lineNums = mAllViews.size();
        for (int i = 0; i < lineNums; i++) {
            // 每一行的所有的views
            lineViews = mAllViews.get(i);
            // 当前行的最大高度
            lineHeight = mLineHeight.get(i);

            // 遍历当前行所有的View
            for (int j = 0; j < lineViews.size(); j++) {
                View childView = lineViews.get(j);
                if (childView.getVisibility() == View.GONE) {
                    continue;
                }
                MarginLayoutParams lp = (MarginLayoutParams) childView
                        .getLayoutParams();

                // 计算childViewleft,top,right,bottom
                int left_child = mLeft + lp.leftMargin;
                int top_child = mTop + lp.topMargin;
                int right_child = left_child + childView.getMeasuredWidth();
                int bottom_child = top_child + childView.getMeasuredHeight();
                // 给每个子控件指定位置
                childView.layout(left_child, top_child, right_child, bottom_child);
                // 指定每个子控件的起始位置
                mLeft += childView.getMeasuredWidth() + lp.rightMargin + lp.leftMargin;
            }
            mLeft = 0;
            mTop += lineHeight;
        }
    }
}

xml文件中调用该控件:

<com.mine.liu.mylife.myview.MyFlowLayout
    android:id="@+id/myFlowLayout_SecondGoodsAdapter"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

</com.mine.liu.mylife.myview.MyFlowLayout>

你在何处使用只需要查找控件然后将 TextView的信息通过addView();添加进去即可,这样就会根据你的控件的数量来动态的设定高度

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值