android点击加号,Android仿微信朋友圈点击加号添加图片功能

本文为大家分享了类似微信朋友圈,点击+号图片,可以加图片功能,供大家参考,具体内容如下

df4b06596c4b3e5bb919ad6476e4c208.png

xml:

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_marginTop="40dp"

android:orientation="vertical" >

android:id="@+id/photoview"

android:layout_width="match_parent"

android:layout_height="wrap_content"

app:ninephoto_hspace="10dp"

app:ninephoto_vspace="10dp"

app:rainbowbar_color="@android:color/holo_blue_bright" >

NinePhotoView.java

public class NinePhotoView extends ViewGroup {

public static final int MAX_PHOTO_NUMBER = 9;

private int[] constImageIds = { R.drawable.girl_0, R.drawable.girl_1,

R.drawable.girl_2, R.drawable.girl_3, R.drawable.girl_4,

R.drawable.girl_5, R.drawable.girl_6, R.drawable.girl_7,

R.drawable.girl_8 };

// horizontal space among children views

int hSpace = Utils.dpToPx(10, getResources());

// vertical space among children views

int vSpace = Utils.dpToPx(10, getResources());

// every child view width and height.

int childWidth = 0;

int childHeight = 0;

// store images res id

ArrayList mImageResArrayList = new ArrayList(9);

private View addPhotoView;

public NinePhotoView(Context context) {

super(context);

}

public NinePhotoView(Context context, AttributeSet attrs) {

this(context, attrs, 0);

}

public NinePhotoView(Context context, AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

TypedArray t = context.obtainStyledAttributes(attrs,

R.styleable.NinePhotoView, 0, 0);

hSpace = t.getDimensionPixelSize(

R.styleable.NinePhotoView_ninephoto_hspace, hSpace);

vSpace = t.getDimensionPixelSize(

R.styleable.NinePhotoView_ninephoto_vspace, vSpace);

t.recycle();

addPhotoView = new View(context);

addView(addPhotoView);

mImageResArrayList.add(new integer());

}

Measure

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

int rw = MeasureSpec.getSize(widthMeasureSpec);

int rh = MeasureSpec.getSize(heightMeasureSpec);

childWidth = (rw - 2 * hSpace) / 3;

childHeight = childWidth;

int childCount = this.getChildCount();

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

View child = this.getChildAt(i);

//this.measureChild(child, widthMeasureSpec, heightMeasureSpec);

LayoutParams lParams = (LayoutParams) child.getLayoutParams();

lParams.left = (i % 3) * (childWidth + hSpace);

lParams.top = (i / 3) * (childWidth + vSpace);

}

int vw = rw;

int vh = rh;

if (childCount < 3) {

vw = childCount * (childWidth + hSpace);

}

vh = ((childCount + 3) / 3) * (childWidth + vSpace);

setMeasuredDimension(vw, vh);

}

我们的子View三个一排,而且都是正方形,所以我们上面通过循环很好去得到所有子View的位置,注意我们上面把子View的左上角坐标存储到我们自定义的LayoutParams 的left和top二个字段中,Layout阶段会使用,最后我们算得整个ViewGroup的宽高,调用setMeasuredDimension设置。

Layout

@Override

protected void onLayout(boolean arg0, int arg1, int arg2, int arg3, int arg4) {

int childCount = this.getChildCount();

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

View child = this.getChildAt(i);

LayoutParams lParams = (LayoutParams) child.getLayoutParams();

child.layout(lParams.left, lParams.top, lParams.left + childWidth,

lParams.top + childHeight);

if (i == mImageResArrayList.size() - 1 && mImageResArrayList.size() != MAX_PHOTO_NUMBER) {

child.setBackgroundResource(R.drawable.add_photo);

child.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View arg0) {

addPhotoBtnClick();

}

});

}else {

child.setBackgroundResource(constImageIds[i]);

child.setOnClickListener(null);

}

}

}

public void addPhoto() {

if (mImageResArrayList.size() < MAX_PHOTO_NUMBER) {

View newChild = new View(getContext());

addView(newChild);

mImageResArrayList.add(new integer());

requestLayout();

invalidate();

}

}

public void addPhotoBtnClick() {

final CharSequence[] items = { "Take Photo", "Photo from gallery" };

AlertDialog.Builder builder = new AlertDialog.Builder(getContext());

builder.setItems(items, new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface arg0, int arg1) {

addPhoto();

}

});

builder.show();

}

最核心的就是调用layout方法,根据我们measure阶段获得的LayoutParams中的left和top字段,也很好对每个子View进行位置排列。然后判断在图片未达到最大值9张时,默认最后一张是+号图片,然后设置点击事件,弹出对话框供用户选择操作。

Draw

不需要重写,使用ViewGroup默认实现即可。

f54166e0fe1b947ba9553da1ac7deffc.gif

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持找一找教程网。

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

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

相关文章

AI 创业公司 Kyndi 获850万美元融资,帮助公司预测未来

雷锋网(公众号&#xff1a;雷锋网)8月10日消息&#xff0c;据外媒报道&#xff0c; Kyndi 是一家总部位于帕洛阿尔托的 AI 创业公司。该公司今天宣布&#xff0c;已经完成了850万美元的 B 轮融资。 本轮融资的资金来源包括 PivotNorth Capital&#xff0c;Darling Ventures 和 …

css max-width_CSS中的max-width属性

css max-widthCSS | 最大宽度属性 (CSS | max-width property) The max-width property is used to help in setting the width of an element to the maximum. Although if the element or content is already larger than the maximum width then the height of that content…

20个编写现代CSS代码的建议

本文翻译自Danny Markov 的20-Tips-For-Writing-Modern-CSS一文。 本文归纳于笔者的Web Frontend Introduction And Best Practices:前端入门与最佳实践中CSS入门与最佳实践系列&#xff0c;其他的关于CSS样式指南的还有提升你的CSS姿势、Facebook里是怎样提升CSS代码质量的。本…

css 相同的css属性_CSS中的order属性

css 相同的css属性CSS | 订单属性 (CSS | order Property) Introduction: 介绍&#xff1a; Web development is an ever-growing field that would never find its end, therefore it is equally necessary to learn new ways to deal with the elements of the web page or …

StoreServ的ASIC架构师必须面向未来做出决断

StoreServ阵列采用特殊硬件&#xff0c;即一套ASIC来加速存储阵列操作&#xff0c;而且其每代阵列都会在这方面进行重新设计。目前的设计为第五代。 作为惠普企业业务公司研究员兼StoreServ架构师&#xff0c;Siamak Nazari当下主要负责第六代ASIC的设计工作。 每代ASIC设计往往…

android网页省略分页器,Android轻量级网页风格分页器

博客同步自:个人博客主页轻量级仿网页风格分页器&#xff0c;和RecycleView封装一起配合使用&#xff0c;也可单独使用&#xff0c;喜欢就star、fork下吧&#xff5e;谢谢目录功能介绍效果图如何引入简单使用依赖github地址功能介绍支持延迟加载分页支持单独分页器组件使用&…

传统存储做到极致也惊人!看宏杉科技发布的CloudSAN

传统存储阵列首先考虑的是高可靠、高性能。那么在成本上、扩展上、部署上就差。 互联网企业带来分布式存储&#xff0c;扩展上、部署上是优势了&#xff0c;但是单节点的可靠性差、数据一致性差、IO延迟大、空间浪费严重&#xff0c;能耗大。 这两者的问题&#xff0c;我想很多…

keil lic_LIC的完整形式是什么?

keil licLIC&#xff1a;印度人寿保险公司 (LIC: Life Insurance Corporation of India) LIC is an abbreviation of the Life Insurance Corporation of India. It is a public segment insurance and investment group corporation in India that generally deals with life …

“云”上存储初显规模 如何架构是关键

在安防系统中&#xff0c;存储设备只是给数据提供存储空间&#xff0c;数据存储的意义更多是为了给上层应用提供二次挖掘。目前的智能分析、大数据、图帧等技术都是基于数据存储做的数据挖掘。为了将二次挖掘应用的性能提升到最高&#xff0c;在优化分析算法的同时&#xff0c;…

【干货】分享总结:MySQL数据一致性

0、导读 沃趣科技数据库工程师罗小波为大家全面分析如何保证MySQL的数据一致性。 1、活动总结 罗小波老师从MySQL的崩溃数据恢复安全性、MySQL复制原理及异步&semi sync复制原理、MySQL主从服务器如何保证数据一致性等多方面分析如何保证MySQL的数据一致性。 分享内容满满的…

设置html按钮点击事件无效果,css怎么设置按钮不能点击?

css怎么设置按钮不能点击&#xff1f;下面本篇文章就来给大家介绍一下使用CSS设置按钮不能点击的方法。有一定的参考价值&#xff0c;有需要的朋友可以参考一下&#xff0c;希望对大家有所帮助。想要按钮不能点击可以通过设置按钮点击事件失效来实现&#xff1b;而在CSS中&…

计算机图形学与几何造型导论_计算机图形学导论

计算机图形学与几何造型导论历史 (History) The main forerunner sciences to the development of modern computer graphics were the advances in electrical engineering, electronics, and television that took place during the first half of the twentieth century whe…

android 继承listview,Android listView 继承ListActivity的用法

Android listView 继承ListActivity的用法 在手机中经常有列表方式。如果Activity中只有唯⼀⼀个List(这也是通常的情况)&#xff0c;可以继承ListActivity来实现。我们用两个例子来学习List。List例子⼀&#xff1a;利用Android自带的List格式步骤⼀&#xff1a;Android XML文…

html页面授权码,spring boot 2.0 整合 oauth2 authorization code授权码模式

oauth2 authorization code 大致流程用户打开客户端后&#xff0c;客户端要求用户给予授权。用户同意给予客户端授权。客户端使用授权得到的code&#xff0c;向认证服务器申请token令牌。认证服务器对客户端进行认证以后&#xff0c;确认无误&#xff0c;同意发放令牌。客户端请…

Net设计模式实例之代理模式(Proxy Pattern)

一、代理模式简介&#xff08;Brief Introduction&#xff09; 代理模式&#xff08;Proxy Pattern&#xff09;对其他对象提供一种代理以控制对这个对象的访问。 二、解决的问题&#xff08;What To Solve&#xff09; 1、远程代理 远程代理&#xff0c;也就是为了一个对象…

jsonp请求html页面,JavaScript中的JSON和JSONP

简单地使用json并不能支持跨域资源请求&#xff0c;为了解决这个问题&#xff0c;需要采用jsonp数据交互协议。众所周知&#xff0c;js文件的调用不受跨域与否的限制&#xff0c;因此如果想通过纯web端跨域访问数据&#xff0c;只能在远程服务器上设法将json数据封装进js格式的…

html导航栏点击不能跳转,无法单击导航栏中的链接CSS HTML

不确定是否允许您链接您的网站&#xff0c;但是如果允许。 因此&#xff0c;我可以将所有链接悬停在导航栏中&#xff0c;但我无法点击它们&#xff0c;并且S的图片是可移动的&#xff0c;但无法点击&#xff0c;我做错了什么&#xff1f;无法单击导航栏中的链接CSS HTMLNickeb…

JAVA 取得当前目录的路径/Servlet/class/文件路径/web路径/url地址

2019独角兽企业重金招聘Python工程师标准>>> 在写Java程序时不可避免要获取文件的路径...总结一下,遗漏的随时补上 1.可以在servlet的init方法里 String path getServletContext().getRealPath("/"); 这将获取web项目的全路径 例如 :E:\eclipseM9\worksp…

关于细分到字段的权限系统_操作系统中的细分

关于细分到字段的权限系统为什么需要细分&#xff1f; (Why Segmentation is required?) In the Operating System, an important drawback of memory management is the separation of the users view of memory and the actual physical memory. Paging is the scheme which…

mba学什么书_MBA的完整形式是什么?

mba学什么书MBA&#xff1a;工商管理硕士 (MBA: Master of Business Administration) MBA is an abbreviation of a Master of Business Administration. It is a masters degree for post-graduation in business administration. This business masters degree program is a …