android 换行乱_Android自动换行布局

public class FlowLayout extends ViewGroup {

/**

* 所有子控件的容器

*/

private List> lineList = new ArrayList<>();

/**

* 每行的高度

*/

private List lineHeightList = new ArrayList<>();

/**

* 防止多次测量

*/

private boolean measureFlag = true;

public FlowLayout(Context context) {

super(context);

}

public FlowLayout(Context context, AttributeSet attrs) {

super(context, attrs);

}

public FlowLayout(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

}

@Override

public LayoutParams generateLayoutParams(AttributeSet attrs) {

return new MarginLayoutParams(getContext(), attrs);

}

/**

* 在被调用这个方法之前 它的父容器 已经把它的测量模式改成了当前控件的测量模式

*

* @param widthMeasureSpec

* @param heightMeasureSpec

*/

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

//获取到父容器 给我们的参考值

int widthSize = MeasureSpec.getSize(widthMeasureSpec);

int heightSize = MeasureSpec.getSize(heightMeasureSpec);

//获取到自己的测量模式

int widthMode = MeasureSpec.getMode(widthMeasureSpec);

int heightMode = MeasureSpec.getMode(heightMeasureSpec);

//记录当前控件里面的子控件的总高宽

int childMaxWidth = 0;

int childCountHeight = 0;

//防止多次测量

if (measureFlag) {

measureFlag = false;

} else {

//当前一行,控件中的子控件的总宽度

int lineCountWidth = 0;

//当前一行,最高子控件的高度

int lineMaxHeight = 0;

//记录每个子控件的宽高

int childWidth, childHeight;

//创建一行空容器

List viewList = new ArrayList<>();

int childCount = getChildCount();

for (int i = 0; i < childCount; i++) {

View childView = getChildAt(i);

//先测量子控件

measureChild(childView, widthMeasureSpec, heightMeasureSpec);

MarginLayoutParams layoutParams = (MarginLayoutParams) childView.getLayoutParams();

//计算当前子控件的实际宽高

childWidth = childView.getMeasuredWidth() + layoutParams.leftMargin + layoutParams.rightMargin;

childHeight = childView.getMeasuredHeight() + layoutParams.topMargin + layoutParams.bottomMargin;

//如果当前行的宽度,加上这个view的宽度,大于容器的宽度时,就换行

if (lineCountWidth + childWidth + getPaddingLeft() + getPaddingRight() > widthSize) {

//需要换行的情况

//每次进入到这里的时候 只是保存了上一行的信息,并没有保存当前行的信息

//拿到所有行中,最大的宽,去决定EXACTLY时的最大宽度

childMaxWidth = Math.max(childMaxWidth, lineCountWidth);

childCountHeight += lineMaxHeight;

//把行高记录到集合中

lineHeightList.add(lineMaxHeight);

//把这一行的数据放进总容器

lineList.add(viewList);

//把一行的容器,重新创建一个,虽然会频繁创建,但如果调用clear,会导致lineList的栈也会被清掉

viewList = new ArrayList<>();

//把每行的高宽初始化

lineCountWidth = childWidth;

lineMaxHeight = childHeight;

viewList.add(childView);

} else {

//不需要换行的情况

lineCountWidth += childWidth;

//取当前行的所有子控件最大的高度

lineMaxHeight = Math.max(lineMaxHeight, childHeight);

viewList.add(childView);

}

//这样做的原因是 之前的if else中 不会把最后一行的高度加进listLineHeight

// 最后一行要特殊对待 不管最后一个item是不是最后一行的第一个item

if (i == (childCount - 1)) {

//保存当前行信息

childMaxWidth = Math.max(childMaxWidth, lineCountWidth + getPaddingLeft() + getPaddingRight());

childCountHeight += lineMaxHeight;

lineHeightList.add(lineMaxHeight);

lineList.add(viewList);

}

}

}

//设置控件最终大小

int measureWidth = (widthMode == MeasureSpec.EXACTLY ? widthSize : childMaxWidth + getPaddingLeft() + getPaddingRight());

int measureHeight = (heightMode == MeasureSpec.EXACTLY ? heightSize : childCountHeight + getPaddingTop() + getPaddingBottom());

setMeasuredDimension(measureWidth, measureHeight);

}

@Override

protected void onLayout(boolean changed, int l, int t, int r, int b) {

//摆放子控件的位置

int left, top, right, bottom;

//保存上一个控件的边距

int countLeft = 0;

//保存上一行的高度的边距

int countTop = 0;

//遍历所有行

for (List views : lineList) {

//遍历每一行的控件

for (View view : views) {

MarginLayoutParams layoutParams = (MarginLayoutParams) view.getLayoutParams();

left = countLeft + layoutParams.leftMargin;

top = countTop + layoutParams.topMargin;

right = left + view.getMeasuredWidth();

bottom = top + view.getMeasuredHeight();

view.layout(left + getPaddingLeft(), top + getPaddingTop(), right + getPaddingRight(), bottom + getPaddingBottom());

//记录当前控件的实际宽度坐标,让下一个控件知道X轴的起点在哪

countLeft += view.getMeasuredWidth() + layoutParams.leftMargin + layoutParams.rightMargin;

}

int i = lineList.indexOf(views);

//换行时从最左边开始

countLeft = 0;

//换行时累加高度

countTop += lineHeightList.get(i);

}

//布局结束后清空记录的list

lineList.clear();

lineHeightList.clear();

}

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/550810.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php数组常用_PHP常用数组总结

header("Content-type:text/html;charsetutf8");//1. array_shift&#xff1a;将数组开头的元素移出数组 出栈 影响原数组$arrarray(1,2,3,4,5,6,7,8,9);echo array_shift($arr);echo "";//2. array_unshift&#xff1a;向数组开头添加一个或更多个元素,所…

php 生成打印送货单,PHP输出PDF打印HTML5+CSS3打印格式控制

ERP系统进入尾声&#xff0c;各种送货单、退货单、合同、对账单等等一系列的东东排着队调打印格式。HTML5CSS3已经这样流行&#xff0c;然则眼下&#xff0c;基于CSS3的打印控制&#xff0c;居然还处于原始部落阶段&#xff0c;Chrome、Firefox、Edge等连简单的page都支持得不完…

备案php代码,备案查询API PHP代码

在线演示http://tool.ayangw.com/beian/?urlqq.com使用方法1.创建一个php文件&#xff0c;比如beian.php&#xff0c;将下方代码复制2.访问接口域名/beian.php?urlqq.comPHP代码<?php /*** 0en.cn*/error_reporting(0);$u $_GET[url];var_dump();if(!isset($u)){echo ?…

php转盘中奖率,PHP大转盘中奖概率算法实例_PHP

本文实例讲述了PHP大转盘中奖概率算法的实现方法&#xff0c;分享给大家供大家参考。具体如下&#xff1a;大转盘是最近很多线上网动中一个比较有意思的东西了&#xff0c;下面我们就来看看这个大转盘中奖概率算法与例子&#xff0c;希望对各位有所帮助。这是一个APP客户端有大…

php 发送delete请求,PHP中使用CURL实现GET、POST、PUT、DELETE请求

/*** param $url* param $data* param string $method* param string $type* return bool|string*/function curlData($url,$data,$method GET,$typejson){//初始化$ch curl_init();$headers [form-data > [Content-Type: multipart/form-data],json > [Content-Type:…

帝国cms php替换,帝国CMS内容关键字替换图片标签解决方法

1、在 e/class/userfun.php 里面增加//替换正文IMG里的ALT内容functionuser_imgalt($mid,$f,$isadd,$isq,$value,$cs){$title$_POST[title];$htmls$value;$pattern "/]>/";preg_match_all($pattern, $htmls, $matches);for($i0; $i<count($matches[0]); $i) {p…

同时运行两个PHP吗,PHP-避免由两个工作人员同时运行后台作业

我有一个守护程序,运行我们的Web服务请求的后台作业.我们有4个工人同时运行.有时,一个作业同时执行两次,因为两个工人决定运行该作业.为了避免这种情况,我们尝试了几件事&#xff1a;>因为我们的工作来自数据库,所以我们添加了一个称为execute的标志,该标志防止其他工作获得…

php类的举例,用类来代替递归方法,用php举例_php _ 搞代码

问题&#xff1a;一个楼梯有n个台阶&#xff0c;每次上一个或两个台阶&#xff0c;共有多少种上法, 每种走法的步骤是什么样的&#xff1f;这个简单问题&#xff0c;我们通常的方法是写一个递归调用&#xff0c;简单明了。但是&#xff0c;这里通过类的叠加来实现&#xff0c;虽…

mysql创建多实例,mysql 单服务器创建多实例

mysql单服务器启动多个实例实际有两种方式第一种方式就是使用mysql mysqld_multi第二种方式就是分别使用不同的目录端口启动不同的实例第一种方式&#xff1a;1、数据库实例目录data3306data3307data33082、创建实例/usr/local/mysql//scripts/mysql_install_db –basedir/usr…

matlab st变换,ST转换(matlab代码)

【实例简介】【实例截图】【核心代码】samplingrate 0.00005;[s,t,f]st(amplitude,0,0.5/samplingrate,samplingrate,1);Tmax(t);subplot(3,1,1),plot(t,amplitude,color,k,linewidth,1)xlabel(时间/s);ylabel(幅值/V);xlim([0 T]);% title(微震波形,FontName,Times New Roman…

easyexcel安全扫描报php,easyExcel使用以及踩过的坑

easyExcel介绍:Java解析、生成Excel比较有名的框架有Apache poi、jxl。但他们都存在一个严重的问题就是非常的耗内存&#xff0c;poi有一套SAX模式的API可以一定程度的解决一些内存溢出的问题&#xff0c;但POI还是有一些缺陷&#xff0c;比如07版Excel解压缩以及解压后存储都是…

python selenium下载,在python中通过Selenium Webdriver下载文件

在使用新的FirefoxProfile时&#xff0c;使用set_preference方法来配置配置文件&#xff0c;这样就可以单击Save和{}&#xff0c;并且在下载过程中不会被中断。您可以按如下方式设置配置&#xff1a;profile webdriver.FirefoxProfile()profile.set_preference("browser.…

用python做人脸识别的程序怎么做,10分钟学会使用python实现人脸识别(附源码)

前言今天&#xff0c;我们用Python实现简单的人脸识别技术&#xff01;Python里&#xff0c;简单的人脸识别有很多种方法可以实现&#xff0c;依赖于python胶水语言的特性&#xff0c;我们通过调用包可以快速准确的达成这一目的。这里介绍的是准确性比较高的一种。一、首先梳理…

matlab是那个国家,这是一个老外写的利用曲率来识别硬币的MATLAB程序。作者所在国家的硬币偏黄色,拍摄的时候反光比较少...

这是一个老外写的利用曲率来识别硬币的MATLAB程序。作者所在国家的硬币偏黄色&#xff0c;拍摄的时候反光比较少2016-08-22 0 0 0 暂无评分其他1积分下载如何获取积分&#xff1f;这是一个老外写的利用曲率来识别硬币的MATLAB程序。作者所在国家的硬币偏黄色&#xff0c;拍摄的…

oracle中12523,【Oracle】静态监听导致的ORA-12523错误

今天配置完共享服务器模式之后发现登录过程中报错ORA-12523&#xff0c;排查错误之后发现是静态监听惹的祸。本机之上有两个监听&#xff0c;一个静态监今天配置完共享服务器模式之后发现登录过程中报错ORA-12523&#xff0c;排查错误之后发现是静态监听惹的祸。本机之上有两个…

线性回归中oracle性质,66.Oracle数据库SQL开发之 高级查询——使用线性回归函数...

66.Oracle数据库SQL开发之 高级查询——使用线性回归函数线性回归函数可以用普通最小平方回归曲线拟合一组数值对。线性回归函数可用于聚合、串口或报表函数。如下图1&#xff1a;例如&#xff1a;storePDB1> selectprd_type_id,regr_avgx(amount,month) as avgx,regr_avgy(…

angularjs php 实例下载,AngularJS Eclipse 1.2.0 插件下载

【实例简介】AngularJS Eclipse 插件为Eclipse提供对AngularJS的支持【实例截图】【核心代码】org.eclipse.angularjs.category-1.2.0├── artifacts.jar├── content.jar├── features│ ├── angularjs-eclipse-feature.source_1.2.0.201606160950.jar│ ├── …

oracle asm磁盘回收步骤,【翻译自mos文章】回收 asm磁盘空间的方法

回收 asm磁盘空间的方法参考原文&#xff1a;How To Reclaim Asm Disk Space? (Doc ID 351866.1)适用于&#xff1a;Oracle Database - Enterprise Edition - Version 10.2.0.1 and laterInformation in this document applies to any platform.***Checked for relevance on 1…

Oracle 4dae,如何处理Python-CXOracle中未知词的错误报告问题,pythoncxOracle,查询,到,生僻字,报错...

关于编码GBK编码是GB2312编码的超集&#xff0c;向下完全兼容GB2312&#xff0c;同时GBK收录了Unicode基本多文种平面中的所有CJK汉字。GB18030编码向下兼容GBK和GB2312&#xff0c;兼容的含义是不仅字符兼容&#xff0c;而且相同字符的编码也相同。GB18030收录了所有Unicode3.…

impala写入oracle,dataframe 写入 impala 语法错误,怎么解决?

dataframe写入impala出现语法错误&#xff0c;错误&#xff1a;Exception in thread "main" java.sql.SQLException: [Simba]ImpalaJDBCDriver ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCode:ERROR_STATUS, sqlState:HY000, erro…