自定义ViewGroup控件(三)-----流式布局进阶(三)

2024-08-31 23:48

本文主要是介绍自定义ViewGroup控件(三)-----流式布局进阶(三),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical" ><com.example.flowlayout.FlowLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:background="#ff00ff" ><TextViewstyle="@style/text_flag_01"android:background="@drawable/flag_03"android:text="sfasfsfasfs"android:textColor="#43BBE7" /><TextViewstyle="@style/text_flag_01"android:background="@drawable/flag_03"android:text="sfas嗯啥哦 "android:textColor="#43BBE7" /><TextViewstyle="@style/text_flag_01"android:background="@drawable/flag_03"android:text="我真是我弄 可以的"android:textColor="#43BBE7" /><TextViewstyle="@style/text_flag_01"android:background="@drawable/flag_03"android:text="暗色捏你你呢你了 "android:textColor="#43BBE7" /><TextViewstyle="@style/text_flag_01"android:background="@drawable/flag_03"android:text="问候foe 接口就是"android:textColor="#43BBE7" /><TextViewstyle="@style/text_flag_01"android:background="@drawable/flag_03"android:text="暗色法俄万人 问啊"android:textColor="#43BBE7" /><TextViewstyle="@style/text_flag_01"android:background="@drawable/flag_03"android:text="为问啊 问问发我发"android:textColor="#43BBE7" /></com.example.flowlayout.FlowLayout></LinearLayout>

styles.xml

<resources><style name="text_flag_01"><item name="android:layout_width">wrap_content</item><item name="android:layout_height">wrap_content</item><item name="android:layout_margin">4dp</item><item name="android:textColor">#ffffff</item></style></resources>

flag_03.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" ><solid android:color="#FFFFFF" ></solid><corners android:radius="40dp" /><paddingandroid:bottom="2dp"android:left="10dp"android:right="10dp"android:top="2dp" /></shape>

MainActivity

package com.example.flowlayout;import android.app.Activity;
import android.os.Bundle;public class MainActivity extends Activity {@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);}
}

FlowLayout

package com.example.flowlayout;import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;public class FlowLayout extends ViewGroup {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);}/*** 父容器生成 子view 的布局LayoutParams;* 一句话道出LayoutParams的本质:LayoutParams是Layout提供给其中的Children使用的。* 如果要自定义ViewGroup支持子控件的layout_margin参数* ,则自定义的ViewGroup类必须重载generateLayoutParams()函数,* 并且在该函数中返回一个ViewGroup.MarginLayoutParams派生类对象,这样才能使用margin参数。*/@Overrideprotected LayoutParams generateLayoutParams(LayoutParams p) {return new MarginLayoutParams(p);}@Overridepublic LayoutParams generateLayoutParams(AttributeSet attrs) {return new MarginLayoutParams(getContext(), attrs);}@Overrideprotected LayoutParams generateDefaultLayoutParams() {return new MarginLayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);}@Overrideprotected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {super.onMeasure(widthMeasureSpec, heightMeasureSpec);int measureWidth = MeasureSpec.getSize(widthMeasureSpec);int measureHeight = MeasureSpec.getSize(heightMeasureSpec);int measureWidthMode = MeasureSpec.getMode(widthMeasureSpec);int measureHeightMode = MeasureSpec.getMode(heightMeasureSpec);// 每行的宽度,每行的高度int lineWidth = 0;int lineHeight = 0;// 初始化容器的高度,宽地int viewGroupHeight = 0;int viewGroupWidth = 0;// 获取子view的数量int count = getChildCount();for (int i = 0; i < count; i++) {// 获取每一个子viewView child = getChildAt(i);// 测量子viewmeasureChild(child, widthMeasureSpec, heightMeasureSpec);// 如果忘记重写generateLayoutParams,则hild.getLayoutParams()将不是MarginLayoutParams的实例// 在强制转换时就会出错,此时我们把左右间距设置为0,但由于在计算布局宽高时没有加上间距值,就是计算出的宽高要比实际小,所以是onLayout时就会出错MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();// 每个子view的宽、高int childWidth = child.getMeasuredWidth() + lp.leftMargin+ lp.rightMargin;int childHeight = child.getMeasuredHeight() + lp.topMargin+ lp.bottomMargin;/*** 换行后:当在显示下一个子view的时候,之前累加 的宽度+下个子view的宽度>测量的viewGroup的宽度,就需要换行显示*/if (lineWidth + childWidth > measureWidth) {// 将容器的高度,进行累加,换行后viewGroupHeight += lineHeight;// 因为由于盛不下当前控件,而将此控件调到下一行,所以将此控件的高度和宽度初始化给lineHeight、lineWidthlineHeight = childHeight;lineWidth = childWidth;} else {// 每行的高度,需要在当前行的所有view取最大值lineHeight = Math.max(lineHeight, childHeight);// 拿第一行来说,在没有换行的情况下,每行的宽度,需要不断累加每个子view的宽度lineWidth += childWidth;}// 最后一行是不会超出width范围的,所以要单独处理if (i == count - 1) {viewGroupHeight += lineHeight;viewGroupWidth = Math.max(viewGroupWidth, lineWidth);}}// 当属性是MeasureSpec.EXACTLY时,那么它的高度就是确定的,// 只有当是wrap_content时,根据内部控件的大小来确定它的大小时,大小是不确定的,属性是AT_MOST,此时,就需要我们自己计算它的应当的大小,并设置进去setMeasuredDimension((measureWidthMode == MeasureSpec.EXACTLY) ? measureWidth: viewGroupWidth,(measureHeightMode == MeasureSpec.EXACTLY) ? measureHeight: viewGroupHeight);}@Overrideprotected void onLayout(boolean changed, int l, int t, int r, int b) {int count = getChildCount();int lineWidth = 0;int lineHeight = 0;int top = 0, left = 0;for (int i = 0; i < count; i++) {View child = getChildAt(i);MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();int childWidth = child.getMeasuredWidth() + lp.leftMargin+ lp.rightMargin;int childHeight = child.getMeasuredHeight() + lp.topMargin+ lp.bottomMargin;if (childWidth + lineWidth > getMeasuredWidth()) {// 如果换行,当前控件将跑到下一行,从最左边开始,所以left就是0,而top则需要加上上一行的行高,才是这个控件的top点;top += lineHeight;left = 0;// 同样,重新初始化lineHeight和lineWidthlineHeight = childHeight;lineWidth = childWidth;} else {lineHeight = Math.max(lineHeight, childHeight);lineWidth += childWidth;}// 计算childView的left,top,right,bottomint lc = left + lp.leftMargin;int tc = top + lp.topMargin;int rc = lc + child.getMeasuredWidth();int bc = tc + child.getMeasuredHeight();child.layout(lc, tc, rc, bc);// 将left置为下一子控件的起始点left += childWidth;}}}


这篇关于自定义ViewGroup控件(三)-----流式布局进阶(三)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1125343

相关文章

如何自定义Nginx JSON日志格式配置

《如何自定义NginxJSON日志格式配置》Nginx作为最流行的Web服务器之一,其灵活的日志配置能力允许我们根据需求定制日志格式,本文将详细介绍如何配置Nginx以JSON格式记录访问日志,这种... 目录前言为什么选择jsON格式日志?配置步骤详解1. 安装Nginx服务2. 自定义JSON日志格式各

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

基于Spring实现自定义错误信息返回详解

《基于Spring实现自定义错误信息返回详解》这篇文章主要为大家详细介绍了如何基于Spring实现自定义错误信息返回效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录背景目标实现产出背景Spring 提供了 @RestConChina编程trollerAdvice 用来实现 HTT

SpringSecurity 认证、注销、权限控制功能(注销、记住密码、自定义登入页)

《SpringSecurity认证、注销、权限控制功能(注销、记住密码、自定义登入页)》SpringSecurity是一个强大的Java框架,用于保护应用程序的安全性,它提供了一套全面的安全解决方案... 目录简介认识Spring Security“认证”(Authentication)“授权” (Auth

Java进阶学习之如何开启远程调式

《Java进阶学习之如何开启远程调式》Java开发中的远程调试是一项至关重要的技能,特别是在处理生产环境的问题或者协作开发时,:本文主要介绍Java进阶学习之如何开启远程调式的相关资料,需要的朋友... 目录概述Java远程调试的开启与底层原理开启Java远程调试底层原理JVM参数总结&nbsMbKKXJx

SpringBoot自定义注解如何解决公共字段填充问题

《SpringBoot自定义注解如何解决公共字段填充问题》本文介绍了在系统开发中,如何使用AOP切面编程实现公共字段自动填充的功能,从而简化代码,通过自定义注解和切面类,可以统一处理创建时间和修改时间... 目录1.1 问题分析1.2 实现思路1.3 代码开发1.3.1 步骤一1.3.2 步骤二1.3.3

dubbo3 filter(过滤器)如何自定义过滤器

《dubbo3filter(过滤器)如何自定义过滤器》dubbo3filter(过滤器)类似于javaweb中的filter和springmvc中的intercaptor,用于在请求发送前或到达前进... 目录dubbo3 filter(过滤器)简介dubbo 过滤器运行时机自定义 filter第一种 @A

Spring AI集成DeepSeek实现流式输出的操作方法

《SpringAI集成DeepSeek实现流式输出的操作方法》本文介绍了如何在SpringBoot中使用Sse(Server-SentEvents)技术实现流式输出,后端使用SpringMVC中的S... 目录一、后端代码二、前端代码三、运行项目小天有话说题外话参考资料前面一篇文章我们实现了《Spring

MySQL进阶之路索引失效的11种情况详析

《MySQL进阶之路索引失效的11种情况详析》:本文主要介绍MySQL查询优化中的11种常见情况,包括索引的使用和优化策略,通过这些策略,开发者可以显著提升查询性能,需要的朋友可以参考下... 目录前言图示1. 使用不等式操作符(!=, <, >)2. 使用 OR 连接多个条件3. 对索引字段进行计算操作4

CSS3 最强二维布局系统之Grid 网格布局

《CSS3最强二维布局系统之Grid网格布局》CS3的Grid网格布局是目前最强的二维布局系统,可以同时对列和行进行处理,将网页划分成一个个网格,可以任意组合不同的网格,做出各种各样的布局,本文介... 深入学习 css3 目前最强大的布局系统 Grid 网格布局Grid 网格布局的基本认识Grid 网