我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android编程重写ViewGroup实现卡片布局的方法

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android编程重写ViewGroup实现卡片布局的方法

本文实例讲述了Android编程重写ViewGroup实现卡片布局的方法。分享给大家供大家参考,具体如下:

实现效果如图

实现思路

1. 重写onMeasure(int widthMeasureSpec, int heightMeasureSpec)设置每个子View的大小

2. 重写onLayout(boolean changed, int l, int t, int r, int b) 设置每个子View的位置

第一步:新建FlowLayout继承ViewGroup


package com.rong.activity;
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, AttributeSet attrs) {
    super(context, attrs);
  }
  @Override
  protected void onLayout(boolean changed, int l, int t, int r, int b) {
    // 当前子View的数量
    int childSize = getChildCount();
    // 获取行宽
    int lineWidth = getMeasuredWidth();
    // 当前是第几行
    int lines = 1;
    // 当前累加的行宽
    int nowLineWidth = 0;
    for (int i = 0; i < childSize; i++) {
      View view = getChildAt(i);
      // 子View的宽度
      int childWidth = view.getMeasuredWidth();
      // 子View的高度
      int childHeight = view.getMeasuredHeight();
      // 如果当前的nowLineWidth+childWidth>= lineWidth 则换行
      if (nowLineWidth + childWidth >= lineWidth) {
        nowLineWidth = 0;
        lines = lines + 1;
      }
      // 设置子View的位置
      view.layout(nowLineWidth, childHeight * (lines - 1), nowLineWidth + childWidth, childHeight * lines);
      nowLineWidth = nowLineWidth + childWidth;
      // 如果nowLineWidth >= lineWidth 则换行
      if (nowLineWidth >= lineWidth) {
        nowLineWidth = 0;
        lines = lines + 1;
      }
    }
  }
  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    // 设置自己View的大小
    setMeasuredDimension(widthMeasureSpec, heightMeasureSpec);
    for (int i = 0; i < getChildCount(); i++) {
      View view = getChildAt(i);
      // 设置每个子View的大小
      view.measure(view.getMeasuredWidth(), view.getMeasuredHeight());
    }
  }
}

第二步:新建布局文件


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@android:color/black"
  android:orientation="vertical" >
  <com.rong.activity.FlowLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff" >
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Apple" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Button" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Cup" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Double" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Ear" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Flower" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Game" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Hotdog" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="interseting" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="joker" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="king" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="mother" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="lost" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="noting" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="orange" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="poker" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="qustion" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="ring" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="string" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="type" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="unit" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="vertion" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="west" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="x" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="young" />
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="zip" />
  </com.rong.activity.FlowLayout>
</RelativeLayout>

运行!

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。

您可能感兴趣的文章:Android控件CardView实现卡片布局Android实现简单卡片布局


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android编程重写ViewGroup实现卡片布局的方法

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android编程重写ViewGroup实现卡片布局的方法

本文实例讲述了Android编程重写ViewGroup实现卡片布局的方法。分享给大家供大家参考,具体如下: 实现效果如图:实现思路 1. 重写onMeasure(int widthMeasureSpec, int heightMeasure
2022-06-06

CSS布局教程:实现瀑布流式卡片布局的最佳方法

引言:在现代网页设计中,瀑布流式卡片布局是非常流行的一种布局方式。它能够有效地展示大量的内容,并且在不同的屏幕尺寸下都能够自适应,给用户带来良好的浏览体验。本文将介绍实现瀑布流式卡片布局的最佳方法,并提供具体的代码示例。一、实现瀑布流式布局
2023-10-21

Android编程实现向SD卡写入数据的方法

本文实例讲述了Android编程实现向SD卡写入数据的方法。分享给大家供大家参考,具体如下: 1.代码: pu
2022-06-06

Android编程实现圆角边框布局效果的方法

本文实例讲述了Android编程实现圆角边框布局效果的方法。分享给大家供大家参考,具体如下:这里用的是TableLayout布局的。先看效果图下面看下布局文件
2023-05-31

Android编程实现读取本地SD卡图片的方法

本文实例讲述了Android编程实现读取本地SD卡图片的方法。分享给大家供大家参考,具体如下:private Bitmap getDiskBitmap(String pathString) {Bitmap bitmap = null;try
2022-06-06

Android编程实现图片透明的方法

本文实例讲述了Android编程实现图片透明的方法。分享给大家供大家参考,具体如下: 今天弄了一个图片的透明方法。 效果图:目录结构 main.xml
2022-06-06

android编程实现图片库的封装方法

本文实例讲述了android编程实现图片库的封装方法。分享给大家供大家参考,具体如下: 大家在做安卓应用的时候 经常要从网络中获取图片 都是通过URL去获取 可是如果本地有图片数据 从本地获取数据不更加快一些 自己在工作中遇到这个问题 所以
2022-06-06

android编程实现系统图片剪裁的方法

本文实例讲述了android编程实现系统图片剪裁的方法。分享给大家供大家参考,具体如下:package cn.test; import java.io.File; import java.text.SimpleDateFormat; imp
2022-06-06

Android编程实现图片拍照剪裁的方法

本文实例讲述了Android实现图片拍照剪裁的方法。分享给大家供大家参考,具体如下: 调用系统的裁剪工具对相册或者拍照的图片进行裁剪。 startActivityforResult用的很恰当,一些系统action需要注意。package c
2022-06-06

android编程实现sd卡读取数据库的方法

本文实例讲述了android编程实现sd卡读取数据库的方法。分享给大家供大家参考,具体如下: 先在 Manifest 里添加权限:2022-06-06

Android编程实现等比例显示图片的方法

本文实例讲述了Android编程实现等比例显示图片的方法。分享给大家供大家参考,具体如下: 在android中,由于密度的影响,如果想得到图片的宽高是不行的,具体为什么我就大概说一下,具体的请搜索度娘或者古哥吧。 原因是如果你把图片放在dr
2022-06-06

Android编程实现在底端显示选项卡的方法

本文实例讲述了Android编程实现在底端显示选项卡的方法。分享给大家供大家参考,具体如下: 1.layout 文件
2022-06-06

android编程实现局部界面动态切换的方法

本文实例讲述了android编程实现局部界面动态切换的方法。分享给大家供大家参考,具体如下: 局部界面固定,局部界面可以动态切换。效果如下:这个效果由3个layout构成 main.xml
2022-06-06

Android编程实现系统重启与关机的方法

本文实例讲述了Android编程实现系统重启与关机的方法。分享给大家供大家参考,具体如下: 最近在做个东西,巧合碰到了sharedUserId 的问题,所以收集了一些资料,存存档备份。 安装在设备中的每一个apk文件,Android 给每个
2022-06-06

Android编程实现只显示图片一部分的方法

本文实例讲述了Android编程实现只显示图片一部分的方法。分享给大家供大家参考,具体如下: 在Android应用程序中加载一张图片,然后把它显示出来这是一件非常容易的事情,那怎么才能显示一张图片的一小部分呢,一种做法是把图片ps一下,要显
2022-06-06

Android编程实现获取图片资源的四种方法

本文实例讲述了Android编程实现获取图片资源的四种方法。分享给大家供大家参考,具体如下: 1. 图片放在sdcard中:代码如下:Bitmap imageBitmap = BitmapFactory.decodeFile(path)//
2022-06-06

Android编程单击图片实现切换效果的方法

本文实例讲述了Android编程单击图片实现切换效果的方法。分享给大家供大家参考,具体如下: 新建一个Android项目,命名为FrameLayout 此实例主要操作src文件夹下的MainActivity.Java类文件和res/layo
2022-06-06

Android编程实现给Button添加图片和文字的方法

本文实例讲述了Android编程实现给Button添加图片和文字的方法。分享给大家供大家参考,具体如下://为按钮添加图片和文字的方法 public Spanned getSpan(int id, String s) {ImageGette
2022-06-06

Android编程实现将tab选项卡放在屏幕底部的方法

本文实例讲述了Android编程实现将tab选项卡放在屏幕底部的方法。分享给大家供大家参考,具体如下: 今天写Tab的时候由于TAB的跳转问题去查资料,倒反而发现更有趣的问题,就是如何将TAB放置在屏幕的底端。有点类似IPhone里的布局了
2022-06-06

Android编程实现ImageView图片抛物线动画效果的方法

本文实例讲述了Android编程实现ImageView图片抛物线动画效果的方法。分享给大家供大家参考,具体如下: 想实现抛物线动画,必须知道抛物线的方程,这时候数学其作用了,假如有如图的抛物线:按照抛物线的方程特别,知道任何的三点可以确定一
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录