Android实现空间不够,自动换行

本文介绍了如何在Android中实现空间不足时自动换行的功能。通过创建自定义的MyFlowLayout Java类,并在XML布局文件中应用,实现了在Activity中根据屏幕空间自动换行展示内容。最终效果展示了该功能的成功实现。
摘要由CSDN通过智能技术生成

复制粘贴修改文件名即可用

自己新建MyFlowLayout的java文件

package com.example.myapplication.view;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;

import java.util.ArrayList;
import java.util.List;

public class MyFlowLayout extends ViewGroup {

    // 存储所有子view
    private List<List<View>> mAllChildViews = new ArrayList<>();
    // 每一行的高度
    private List<Integer> mLineHeight = new ArrayList<>();

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

    @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);

        // 如果当前GroupView的宽高为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 layoutParams = (MarginLayoutParams) getLayoutParams();
            //
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值