实现方案:ListView + Popwindow
-
ListView多选【最简单的ItemView布局】https://blog.csdn.net/zhangxiangliang2/article/details/73743355
-
ListView多选相关的一些Api以及带有Header的ListView处理:https://blog.csdn.net/ljfbest/article/details/40685327
-
PopupWindow 7.0显示位置异常【坑】 https://blog.csdn.net/sinat_30822905/article/details/80965480
核心代码:
int[] location = new int[2] ;
view.getLocationInWindow(location); //获取在当前窗口内的绝对坐标
view.getLocationOnScreen(location);//获取在整个屏幕内的绝对坐标
location [0]--->x坐标,location [1]--->y坐标
todo 2018年12月19日 15:00:17 上传我的代码