标签:listview
今天看了“鸿祥_”大神的写的“ListView滑动删除,仿腾讯QQ” 。大神果然是大神,第一篇文章,我就看不懂,好多知识需要学习。
1. 文中的一个声明:private LayoutInflater mInflater;
什么是LayoutInflater?
答:主要参考了这篇文章
touchSlop是指用户滑动的最小距离
touchSlop = ViewConfiguration.get(context).getScaledTouchSlop();
//是一个距离,表示滑动的时候,手的移动要大于这个距离才开始移动控件。
3.文中的一个实例化:
关于PopupWindow的说明:
Android的对话框有两种:PopupWindow和AlertDialog。它们的不同点在于:AlertDialog的位置固定,而PopupWindow的位置可以随意。
PopupWindow的一种构造方法:public PopupWindow(View contentView, int width, int height)
其中,contentView为要显示的view,width和height为宽和高,值为像素值。
4.获取mPopupWindow的宽和高
需要先调用以下measure,然后再获取。不管程序看起来很怪,不利于理解。
OK,先学这么,我得消化消化。
【学习笔记】"ListView滑动删除 ,仿腾讯QQ"(一)
标签:listview
原文地址:http://blog.csdn.net/chjr1000/article/details/43969207