android手机微信收藏功能实现,Android模仿微信收藏文件的标签处理功能

最近需要用到微信的标签功能(如下图所示)。该功能可以添加已有标签,也可以自定义标签。也可以删除已编辑菜单。研究了一番。发现还是挺有意思的,模拟实现相关功能。

6d1581f67e0ba2819a1f00bf149463a6.png

4305daaf90d8c88e4fc779bb5bd57c3b.png

该功能使用类似FlowLayout的功能。Flowlayout为一个开源软件(https://github.com/ApmeM/android-flowlayout),功能为自动换行的布局类型

3d03c936e6ba523b5c27c0161a3c37be.png

dca672cc4d3f5242bfd567b569659c79.png

import android.content.Context;

import android.util.AttributeSet;

import android.view.View;

import android.view.ViewGroup;

/**

*

* @author RAW

*/

public class FlowLayout extends ViewGroup {

private final static int PAD_H = 2, PAD_V = 2; // Space between child views.

private int mHeight;

public FlowLayout(Context context) {

super(context);

}

public FlowLayout(Context context, AttributeSet attrs) {

super(context, attrs);

}

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

assert (MeasureSpec.getMode(widthMeasureSpec) != MeasureSpec.UNSPECIFIED);

final int width = MeasureSpec.getSize(widthMeasureSpec) - getPaddingLeft() - getPaddingRight();

int height = MeasureSpec.getSize(heightMeasureSpec) - getPaddingTop() - getPaddingBottom();

final int count = getChildCount();

int xpos = getPaddingLeft();

int ypos = getPaddingTop();

int childHeightMeasureSpec;

if(MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.AT_MOST)

childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST);

else

childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);

mHeight = 0;

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

final View child = getChildAt(i);

if(child.getVisibility() != GONE) {

child.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.AT_MOST), childHeightMeasureSpec);

final int childw = child.getMeasuredWidth();

mHeight = Math.max(mHeight, child.getMeasuredHeight() + PAD_V);

if(xpos + childw > width) {

xpos = getPaddingLeft();

ypos += mHeight;

}

xpos += childw + PAD_H;

}

}

if(MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.UNSPECIFIED) {

height = ypos + mHeight;

} else if(MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.AT_MOST) {

if(ypos + mHeight < height) {

height = ypos + mHeight;

}

}

height += 5; // Fudge to avoid clipping bottom of last row.

setMeasuredDimension(width, height);

} // end onMeasure()

@Override

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

final int width = r - l;

int xpos = getPaddingLeft();

int ypos = getPaddingTop();

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

final View child = getChildAt(i);

if(child.getVisibility() != GONE) {

final int childw = child.getMeasuredWidth();

final int childh = child.getMeasuredHeight();

if(xpos + childw > width) {

xpos = getPaddingLeft();

ypos += mHeight;

}

child.layout(xpos, ypos, xpos + childw, ypos + childh);

xpos += childw + PAD_H;

}

}

} // end onLayout()

}

以上所述是小编给大家介绍的android模仿微信收藏文件的标签处理功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

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

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

相关文章

strocli64 源码_storcli 简易使用介绍

MegaCli 是LSI公司官方提供的SCSI卡管理工具&#xff0c;由于LSI被收购变成了现在的Broadcom&#xff0c;所以现在想下载MegaCli&#xff0c;需要去Broadcom官网查找Legacy产品支持&#xff0c;搜索MegaRAID即可。关于MegaCli 的使用可以看我的另一篇博文&#xff0c;这里就不再…

android 电话号码标记,强化电话标记功能 360手机卫士3.0安卓版体验

作为“房产商”&#xff0c;上海仁恒置地集团营销总监姚伟示通常每天也要接到20个左右房产或其他推销电话。“现在已经形成了一个机械的对应方式&#xff0c;对于此类推销电话&#xff0c;很多人包括我自己已经麻木了。”针对这种情况&#xff0c;360手机卫士发布了3.0.0正式版…

lua判断字符不为空或空格_Lua判断字符串前缀是否为指定字符的3种方法

在写 lua debugger 的时候&#xff0c;我需要判断一个字符串的前缀是不是 "" 。有三个方案&#xff1a;1.比较直观的是 string.sub(str,1,1) ""2.感觉效率比较高的是 string.byte(str) 643.或者是 string.find(str,"") 1我推荐第三种。(注&am…

android 左滑按钮,android开发类似微信列表向左滑动按钮操作

话不多说&#xff0c;直接上代码&#xff0c;有详细的注释的。layout布局中&#xff1a;主要是跟大家说一下listview怎么写&#xff1a;android:id"id/pull_refresh_viewId"android:layout_width"match_parent"android:layout_height"match_parent&qu…

眼图 非差分线_利用眼图解决USB在布线中的信号完整性问题

EDA365欢迎您登录&#xff01;您需要 登录 才可以下载或查看&#xff0c;没有帐号&#xff1f;注册x本帖最后由 lifree 于 2020-2-5 14:37 编辑2 ]3 p D% B4 \ {/ n# V& |( A& p O通用串行总线USB (Universal Serial Bus)协议从1.0版本发展到现在&#xff0c;由于数据…

向量表示 运动抛物线_流动的美丽函数——抛物线浅谈

事先说明&#xff1a;笔者初三&#xff0c;如在叙述中有不严谨的地方&#xff0c;还请诸位指出&#xff0c;自当感激不尽。&#xff08;本文默认受众对象为初高中生&#xff0c;因此抛物线一律采取了yax的形式&#xff0c;高中的同学们可以应用旋转矩阵把它变到y2px的形式QAQ笔…

android 获取已安装 错误代码,android获取手机已经安装的app信息

Android获取手机已安装APP(系统/非系统)效果图主体代码private ListView mlistview;private ListpackageInfoList;private ListapplicationInfoList;private MyAdapter myAdapter;private PackageManager pm;Overrideprotected void onCreate(Bundle savedInstanceState) {supe…

android与ios ui切图关系,APP-IOS与Android界面设计与切图

做一全套的APP设计&#xff0c;流程是&#xff1a;1、界面设计&#xff1a;设计IOS界面&#xff1b;设计Android界面。2、切图&#xff1a;切IOS的2倍图和3倍图&#xff1b;切Android的hdpi,xhdpi,xxhdpi这三个尺寸的图。3、标注&#xff1a;以px为单位标注IOS界面的尺寸&#…

js禁止鼠标滑轮_js实现鼠标滑动到某个div禁止滚动

本文实例为大家分享了js实现鼠标滑动到某个div禁止滚动的具体代码&#xff0c;供大家参考&#xff0c;具体内容如下项目中碰到一个场景就是当鼠标滑倒某个div的时候&#xff0c;滑动鼠标页面不再滚动。这里主要是当鼠标滑动到该div时&#xff0c;监听滚轮事件并通过preventDefa…

android app应用后台休眠,安卓手机锁屏后程序自动关闭,怎么设置手机app允许锁屏后台运行...

原标题&#xff1a;安卓手机锁屏后程序自动关闭&#xff0c;怎么设置手机app允许锁屏后台运行安卓手机锁屏后&#xff0c;很多程序就会自动关闭&#xff0c;实际上&#xff0c;这是安卓手机的一种保护机制。为了使系统能够流畅稳定的运行以及更加省电&#xff0c;它都会在手机锁…

ps怎么清屏_黑洞PS大赛刷屏!最后一张扎心了……

事件视界望远镜(EHT)项目组和中国科学院共同在上海天文台发布由EHT“拍下”的人类历史上首张黑洞照片这意味着人类成功获得了超大黑洞的第一个直接视觉证据黑洞首次露出真容&#xff01;据说宇宙诞生了138亿年年龄最大的黑洞也已经超过了100亿岁经过了这么久黑洞家族的成员才终…

linux和windows和鸿蒙,linux很好,但为何大家都用Win,鸿蒙系统站错阵营了吗?

原标题&#xff1a;linux很好&#xff0c;但为何大家都用Win&#xff0c;鸿蒙系统站错阵营了吗&#xff1f;由目前已知信息可知&#xff0c;华为“鸿蒙系统”很可能基于linux开源程序搭建&#xff0c;这个特点与苹果微软由很大不同。苹果手机目前主要使用Objective-C程序语言开…

centos7磁盘逻辑分区命令_CentOS7 磁盘分区(主分区、扩展分区和逻辑分区)的创建、挂载与删除...

创建磁盘分区查看磁盘分区情况&#xff1a;fdisk -l[rootmodel ~]# fdisk -l //查看系统中所有磁盘的分区列表Disk/dev/sda: 107.4 GB, 107374182400 bytes, 209715200sectorsUnits sectors of 1 * 512 512bytesSector size (logical/physical): 512 bytes / 512bytesI/O size…

php使用webservivce_JWS服务开发使用指南

均支持该版本&#xff0c;主要你的web.xml文件中必须制定2.5版本xmlversion"1.0"encoding"UTF-8"?><web-appxmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xmlns"http://java.sun.com/xml/ns/javaee"xmlns:web"ht…

android sdk是灰的,Android Studio 2.3 sdk管理器标签灰显

Android Studio 2.3 - >配置 - > SDK管理器。 这些选项卡呈灰色显示&#xff1a; SDK工具&#xff0c;SDK更新站点。此外&#xff0c;“Show Package Details”复选框呈灰色。 系统正常更新。没有错误消息。Android Studio 2.3 sdk管理器标签灰显我认为这发生在Studio 2.…

android layer阴影,Android Layer-List实现自定义Shape阴影

一、给右侧和底层加阴影android:left"2dp"android:top"2dp">android:angle"270"android:endColor"#0F000000"android:startColor"#0F000000" />android:bottomLeftRadius"6dip"android:bottomRightRadius&q…

localdatetime 默认时间_java中的时间与时区:LocalDateTime和Date

LocalDateTimeLocalDateTime本身不包含时区信息&#xff0c;它存储的是年、月、日、时分秒&#xff0c;纳秒这样的数字。在不同的时区下&#xff0c;这样的数字代表不同的时间。比如一个LocalDateTime存储2020-01-01 08&#xff1a;00&#xff1a;00&#xff0c;这里省略纳秒。…

html 拖拽坐标,Html+css实现拖拽导航条

div横向拖拽排序body, div {padding: 0px;margin: 0px;}.box {position: relative;margin-left: 15px;padding: 10px;padding-right: 0px;width: 810px;border: blue solid 1px;}.box ul{list-style: none;overflow: hidden;padding: 0;margin:0;}.drag {float: left;border: #…

seata 如何开启tcc事物_微服务分布式事务4种解决方案实战

分布式事务分布式事务是指事务的参与者&#xff0c;支持事务的服务器&#xff0c;资源服务器分别位于分布式系统的不同节点之上&#xff0c;通常一个分布式事物中会涉及到对多个数据源或业务系统的操作。典型的分布式事务场景&#xff1a;跨银行转操作就涉及调用两个异地银行服…

python redis 哨兵_Redis哨兵机制

概述上篇文章主要说了Redis 复制的内容&#xff0c;但 Redis 复制有一个缺点&#xff0c;当主机 Master 宕机以后&#xff0c;我们需要人工解决切换&#xff0c;比如使用slaveof no one 。实际上主从复制并没有实现&#xff0c;高可用&#xff0c; 高可用侧重备份机器&#xff…