GridView设置分割线与dispatchDraw

2023-12-23 04:58

本文主要是介绍GridView设置分割线与dispatchDraw,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

自定义GridView :

在dispatchDraw中绘制分割线。

public class MyDividerGridView extends GridView {private Paint paint;public MyDividerGridView(Context context) {super(context);initPaint();}public MyDividerGridView(Context context, AttributeSet attrs) {super(context, attrs);initPaint();}public MyDividerGridView(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);initPaint();}private void initPaint() {paint = new Paint();paint.setStyle(Paint.Style.STROKE);paint.setColor(Color.parseColor("#e6e6e6"));}@Overrideprotected void dispatchDraw(Canvas canvas) {super.dispatchDraw(canvas);//子view的总数int childTotalCount = getChildCount();//列数int columnCount = getNumColumns();//行数int rowCount;if (childTotalCount % columnCount == 0) {rowCount = childTotalCount / columnCount;} else {rowCount = (childTotalCount / columnCount) + 1; //当余数不为0时,要把结果加上1}for (int i = 0; i < childTotalCount; i++) {//遍历子viewView cellView = getChildAt(i);//获取子viewint height = cellView.getHeight();//子view的高度if (!(i % columnCount == 0)) {//不是第一列canvas.drawLine(cellView.getLeft(), cellView.getTop() + 0.15f * height,cellView.getLeft(), cellView.getBottom() - 0.15f * height, paint);}if (!(i >= (rowCount - 1) * columnCount)) {//不是最后一行的第一个及其他canvas.drawLine(cellView.getLeft(), cellView.getBottom(),cellView.getRight(), cellView.getBottom(), paint);}}}
}

布局中使用:

<com.dch.dai.view.MyDividerGridViewandroid:id="@+id/help_gv"android:layout_width="match_parent"android:layout_height="wrap_content"android:horizontalSpacing="0.0dip"android:listSelector="@null"android:background="@color/white"android:numColumns="3"android:scrollbars="none"android:stretchMode="columnWidth"android:verticalSpacing="0.0dip" />

效果:

这里写图片描述

其他:

去除默认selector:

1、gridview的布局中:

    android:listSelector="@null"

2、在item布局的根布局添加background的selector即可:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"android:id="@+id/help_gv_item_container"android:layout_width="match_parent"android:layout_height="wrap_content"android:background="?android:attr/selectableItemBackground"android:orientation="vertical"><ImageViewandroid:id="@+id/help_gv_item_iv"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_centerHorizontal="true"android:layout_marginTop="28dp"android:src="@drawable/reglogin" /><TextViewandroid:id="@+id/help_gv_item_tv"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_below="@+id/help_gv_item_iv"android:layout_centerHorizontal="true"android:layout_weight="1"android:gravity="center_horizontal"android:paddingBottom="17dp"android:paddingTop="12dp"android:text="登录/注册"android:textColor="#666666"android:textSize="13sp" /></RelativeLayout>

这篇关于GridView设置分割线与dispatchDraw的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

如何设置vim永久显示行号

《如何设置vim永久显示行号》在Linux环境下,vim默认不显示行号,这在程序编译出错时定位错误语句非常不便,通过修改vim配置文件vimrc,可以在每次打开vim时永久显示行号... 目录设置vim永久显示行号1.临时显示行号2.永www.chinasem.cn久显示行号总结设置vim永久显示行号在li

Linux:alias如何设置永久生效

《Linux:alias如何设置永久生效》在Linux中设置别名永久生效的步骤包括:在/root/.bashrc文件中配置别名,保存并退出,然后使用source命令(或点命令)使配置立即生效,这样,别... 目录linux:alias设置永久生效步骤保存退出后功能总结Linux:alias设置永久生效步骤

Spring MVC如何设置响应

《SpringMVC如何设置响应》本文介绍了如何在Spring框架中设置响应,并通过不同的注解返回静态页面、HTML片段和JSON数据,此外,还讲解了如何设置响应的状态码和Header... 目录1. 返回静态页面1.1 Spring 默认扫描路径1.2 @RestController2. 返回 html2

四种简单方法 轻松进入电脑主板 BIOS 或 UEFI 固件设置

《四种简单方法轻松进入电脑主板BIOS或UEFI固件设置》设置BIOS/UEFI是计算机维护和管理中的一项重要任务,它允许用户配置计算机的启动选项、硬件设置和其他关键参数,该怎么进入呢?下面... 随着计算机技术的发展,大多数主流 PC 和笔记本已经从传统 BIOS 转向了 UEFI 固件。很多时候,我们也

Linux中chmod权限设置方式

《Linux中chmod权限设置方式》本文介绍了Linux系统中文件和目录权限的设置方法,包括chmod、chown和chgrp命令的使用,以及权限模式和符号模式的详细说明,通过这些命令,用户可以灵活... 目录设置基本权限命令:chmod1、权限介绍2、chmod命令常见用法和示例3、文件权限详解4、ch

SpringBoot项目引入token设置方式

《SpringBoot项目引入token设置方式》本文详细介绍了JWT(JSONWebToken)的基本概念、结构、应用场景以及工作原理,通过动手实践,展示了如何在SpringBoot项目中实现JWT... 目录一. 先了解熟悉JWT(jsON Web Token)1. JSON Web Token是什么鬼

使用Spring Cache时设置缓存键的注意事项详解

《使用SpringCache时设置缓存键的注意事项详解》在现代的Web应用中,缓存是提高系统性能和响应速度的重要手段之一,Spring框架提供了强大的缓存支持,通过​​@Cacheable​​、​​... 目录引言1. 缓存键的基本概念2. 默认缓存键生成器3. 自定义缓存键3.1 使用​​@Cacheab

java如何调用kettle设置变量和参数

《java如何调用kettle设置变量和参数》文章简要介绍了如何在Java中调用Kettle,并重点讨论了变量和参数的区别,以及在Java代码中如何正确设置和使用这些变量,避免覆盖Kettle中已设置... 目录Java调用kettle设置变量和参数java代码中变量会覆盖kettle里面设置的变量总结ja

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

uniapp设置微信小程序的交互反馈

链接:uni.showToast(OBJECT) | uni-app官网 (dcloud.net.cn) 设置操作成功的弹窗: title是我们弹窗提示的文字 showToast是我们在加载的时候进入就会弹出的提示。 2.设置失败的提示窗口和标签 icon:'error'是设置我们失败的logo 设置的文字上限是7个文字,如果需要设置的提示文字过长就需要设置icon并给