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

2024-08-31 23:48

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


main.xml

<?xml version="1.0" encoding="utf-8"?>
<com.example.SimpleLayout.MyLinLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="wrap_content"android:background="#ff00ff"tools:context=".MainActivity" >
<!-- 在XML中添加上layout_margin参数 --><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="10dp"android:background="#ff0000"android:text="第一个VIEW" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:background="#00ff00"android:text="第二个VIEW" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="30dp"android:background="#0000ff"android:text="第三个VIEW" /></com.example.SimpleLayout.MyLinLayout>

MainActivity

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

MyLinLayout

package com.example.SimpleLayout;import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;/*** /** onMeasure():测量自己的大小,自己的大小,为正式布局提供建议。(注意,只是建议,至于用不用,要看onLayout);* onLayout():使用layout()函数对所有子控件布局; onDraw():根据布局的位置绘图;* */
public class MyLinLayout extends ViewGroup {/*** 构造函数--二话不说,直接写出三个来* * @param context*/public MyLinLayout(Context context) {super(context);}public MyLinLayout(Context context, AttributeSet attrs) {super(context, attrs);}public MyLinLayout(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);}/*** 如果要自定义ViewGroup支持子控件的layout_margin参数,* 则自定义的ViewGroup类必须重载generateLayoutParams* ()函数,并且在该函数中返回一个ViewGroup.MarginLayoutParams派生类对象,这样才能使用margin参数。*/@Overrideprotected LayoutParams generateLayoutParams(LayoutParams p) {return new MarginLayoutParams(p);}/*** 从指定的XML中获取对应的layout_width和layout_height值*/// 如果我们还需要margin相关的参数就只能重写generateLayoutParams()函数了:@Overridepublic LayoutParams generateLayoutParams(AttributeSet attrs) {return new MarginLayoutParams(getContext(), attrs);}/*** generateDefaultLayoutParams()函数。 直接返回对应的MarginLayoutParams()的实例*//*** 如果要使用默认的构造方法,就生成layout_width="wrap_content"、layout_height="wrap_content"* 对应的参数*//*** 为什么非要重写generateLayoutParams()函数了,就是因为默认的generateLayoutParams()* 函数只会提取layout_width* 、layout_height的值,只有MarginLayoutParams()才具有提取margin间距的功能!!!!*/@Overrideprotected LayoutParams generateDefaultLayoutParams() {return new MarginLayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);}/*** 此ViewGroup的宽高属性 android:layout_width="match_parent"--EXACTLY(确定)* android:layout_height="wrap_content"--AT_MOST(不确定)* * 他们是父类传递过来给当前view的一个建议值,建议值,即想把当前view的尺寸设置为宽widthMeasureSpec,* 高heightMeasureSpec* * ②、EXACTLY(完全),父元素决定自元素的确切大小,子元素将被限定在给定的边界里而忽略它本身大小;* ③、AT_MOST(至多),子元素至多达到指定大小的值。*/@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);// 初始化ViewGroup宽、高int viewGroupHeight = 0;int viewGroupWidth = 0;// 获取viewGroup中的每个孩子View,进行遍历int count = getChildCount();for (int i = 0; i < count; i++) {// 依次获取每个孩子View对象View child = getChildAt(i);// 测量每个孩子View,将父类的模式传进去--点开看源码measureChild(child, widthMeasureSpec, heightMeasureSpec);// 获取MarginLayoutParams布局参数!!!!!!!!!!!!!!!!!!!!!!!/*** 由于generateLayoutParams()的返回值是LayoutParams实例,* 而MarginLayoutParams是派生自LayoutParam的* ;所以根据类的多态的特性,可以直接将此时的LayoutParams实例直接强转成MarginLayoutParams实例;* 所以下面这句在这里是不会报错的:*/MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();int childHeight = child.getMeasuredHeight() + lp.topMargin+ lp.bottomMargin;int childWidth = child.getMeasuredWidth() + lp.leftMargin+ lp.rightMargin;// ViewGroup高度递增viewGroupHeight += childHeight;// ViewGroup宽度取最大值viewGroupWidth = Math.max(childWidth, viewGroupWidth);}// ViewGroup的宽不需要测量直接"match_parent"--EXACTLY// 高是"wrap_content"--AT_MOST,需要累加得到高度/*** ②、EXACTLY(完全),父元素决定自元素的确切大小,子元素将被限定在给定的边界里而忽略它本身大小;* ③、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 top = 0;int count = getChildCount();for (int i = 0; i < count; i++) {View child = getChildAt(i);// 获取MarginLayoutParams布局参数!!!!!!!!!!!!!!!!!!!!MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();int childHeight = child.getMeasuredHeight() + lp.topMargin+ lp.bottomMargin;int childWidth = child.getMeasuredWidth() + lp.leftMargin+ lp.rightMargin;child.layout(0, top, childWidth, top + childHeight);top += childHeight;}}
}


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



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

相关文章

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

如何自定义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