仿微信联系人列表字母侧滑控件, 侧滑控件参考了以下博客:
Android实现ListView的A-Z字母排序和过滤搜索功能
首先分析一下字母侧滑控件应该如何实现,根据侧滑控件的高度和字母的数量来平均计算每个字母应该占据的高度。
在VIEw的onDraw()方法下绘制每一个字母
protected voID onDraw(Canvas canvas) { super.onDraw(canvas); int height = getHeight();// 获取对应高度 int wIDth = getWIDth(); // 获取对应宽度 int singleHeight = height / getData().size();// 获取每一个字母的高度 for (int i = 0; i < getData().size(); i++) { mPaint.setcolor(getLettercolor());//绘制字母的颜色 mPaint.setTypeface(Typeface.DEFAulT); mPaint.setAntiAlias(true); mPaint.setTextSize(singleHeight); // 如果是选中的状态 if (i == mposition) { mPaint.setcolor(getLetterpressedcolor()); mPaint.setFakeBoldText(true); } // x坐标等于总体宽度中间的位置减去字符串宽度的一半. float xPos = wIDth / 2 - mPaint.measureText(getData().get(i)) / 2; float yPos = singleHeight * i + singleHeight; canvas.drawText(getData().get(i),xPos,yPos,mPaint); mPaint.reset();// 重置画笔 } }
然后再看一下触控事件的拦截处理
@OverrIDe public boolean dispatchtouchEvent(MotionEvent event) { final int action = event.getAction(); final float y = event.getY();// 点击y坐标 final int lastposition = mposition;//记录上一次选中字母的位置 final int position = (int) (y / getHeight() * getData().size());// 点击y坐标所占总高度的比例*b数组的长度就等于点击b中的个数. switch (action) { //当手指离开 case MotionEvent.ACTION_UP: //设置侧滑控件的背景色 setBackgroundcolor(getBackgroundnormalcolor()); mposition = -1; invalIDate(); if (getontouchLetterListener() != null) { //回调事件,告知当前手指已经离开当前区域 getontouchLetterListener().ontouchOutsIDe(); } break; default: //更改当字母为选中状态时控件的背景色 setBackgroundcolor(getBackgroundpressedcolor()); //如果选中字母的位置不等于上一次选中的位置 if (lastposition != position) { if (position >= 0 && position < getData().size()) { if (getontouchLetterListener() != null) { //回调事件,返回当前选中的字母 getontouchLetterListener().ontouchLetter(getData().get(position)); } mposition = position; invalIDate(); } } break; } return true; } public interface OntouchLetterListener { /** * 当接触到某个key的时候会调用; * @param s */ voID ontouchLetter(String s); /** * 当离开控件可触摸区域时会调用; */ voID ontouchOutsIDe(); }
侧滑控件完成后, 再分析一下分组界面是怎么实现的,不同分组由不同的字母作为标题,用ListVIEw就可以实现,ListVIEw里使用的Adapter里面有一个方法getItemVIEwtype()方法用于区分返回多种类型的VIEw,这里我们就两种, 一个是标题,一个是联系人信息;顶部里那些新的朋友、群聊等可以用ListVIEw的addheaderVIEw()实现。但是用最SDK自带的BaseAdapter实现分组的话也不方便,实际上我们可以进一步包装;
首先看一下最基本的Adapter封装:
public abstract class SimpleAdapter<T> extends BaseAdapter { protected Context mContext; protected List<T> mData; public SimpleAdapter(){} public SimpleAdapter(Context context,List<T> data){ init(context,data); } public voID init(Context context,List<T> data){ this.mContext = context; this.mData = data; } @OverrIDe public int getCount() { return mData.size(); } @OverrIDe public T getItem(int position) { if(checkpositionIsOutOfRange(position)){ return null; } return mData.get(position); } @OverrIDe public long getItemID(int position) { return position; } @OverrIDe public abstract VIEw getVIEw(int position,VIEw convertVIEw,VIEwGroup parent); public voID refresh(List<T> data){ if(data == null){ this.mData.clear(); }else{ this.mData = data; } notifyDataSetChanged(); } public boolean checkpositionIsOutOfRange(int position){ if(0 <= position && position < mData.size()){ return false; } return true; } public Context getContext(){ return mContext; } public List<T> getData(){ return mData; }}
这个SimpleAdapter实现了数据基于List的最基本方法的实现,使得每次继承BaseAdapter不用再实现一些基本的方法,接下来再看一下用于更好实现分组的Adapter的进一步封装:
public abstract class SortAdapter<K extends SortKey,V,VH_G extends VIEwHolder,VH_C extends VIEwHolder> extends SimpleAdapter<Object> { public final static int VIEW_TYPE_GROUP = 0; public final static int VIEW_TYPE_CHILD = 1; private HashMap<SortKey,Integer> mKeyIndex = new HashMap<>(); public SortAdapter(Context context,Map<K,List<V>> map) { init(context,convertMapToList(map)); } public SortAdapter(Context context,List<Object> List) { init(context,List); } /** * 转换分组数据为List,并且更新键值的索引 * @param map * @return */ public List<Object> convertMapToList(Map<K,List<V>> map) { List<Object> mData = new ArrayList<>(); mKeyIndex.clear(); for (Map.Entry<K,List<V>> entry : map.entrySet()) { mData.add(entry.getKey()); mKeyIndex.put(entry.getKey(),mData.size() - 1); for (V v : entry.getValue()) { mData.add(v); } } return mData; } public voID refresh(Map<K,List<V>> map) { super.refresh(convertMapToList(map)); } @OverrIDe public voID refresh(List<Object> data) { super.refresh(data); mKeyIndex.clear(); } /** * 得到键值的索引值 * @param k * @return */ public int getKeyIndex(K k){ Integer integer = mKeyIndex.get(k); if(integer == null){ return getKeyIndexFromList(k); } return integer; } public int getKeyIndexFromList(K k){ for(int i = 0; i < getCount(); i++){ Object obj = getItem(i); if(obj != null && obj instanceof SortKey){ if(obj.equals(k)){ mKeyIndex.put(k,i); return i; } } } return -1; } @OverrIDe public int getItemVIEwType(int position) { Object obj = getItem(position); if (obj instanceof SortKey) { return VIEW_TYPE_GROUP; } return VIEW_TYPE_CHILD; } @OverrIDe public int getVIEwTypeCount() { return 2; } @OverrIDe public int getCount() { return mData.size(); } @OverrIDe public Object getItem(int position) { if (0 <= position && position < mData.size()) { return mData.get(position); } return null; } @OverrIDe public long getItemID(int position) { return position; } @OverrIDe public VIEw getVIEw(int position,VIEwGroup parent) { int vIEwType = getItemVIEwType(position); VIEw vIEw = null; Object obj = getItem(position); switch (vIEwType) { case VIEW_TYPE_GROUP: vIEw = getGroupVIEw((K)obj,position,convertVIEw,parent); break; case VIEW_TYPE_CHILD: vIEw = getChildVIEw((V)obj,parent); break; } return vIEw; } public VIEw getGroupVIEw(K key,int position,VIEwGroup parent){ VH_G vh; if(convertVIEw == null){ convertVIEw = LayoutInflater.from(mContext).inflate(getGroupLayoutID(),null); vh = onCreateGroupVIEwHolder(convertVIEw,parent); convertVIEw.setTag(vh); }else{ vh = (VH_G)convertVIEw.getTag(); } onBindGroupVIEwHolder(vh,key,position); return convertVIEw; } public VIEw getChildVIEw(V value,VIEwGroup parent){ VH_C vh; if(convertVIEw == null){ convertVIEw = LayoutInflater.from(mContext).inflate(getChildLayoutID(),null); vh = onCreateChildVIEwHolder(convertVIEw,parent); convertVIEw.setTag(vh); }else{ vh = (VH_C)convertVIEw.getTag(); } onBindChildVIEwHolder(vh,value,position); return convertVIEw; } public abstract @LayoutRes int getGroupLayoutID(); public abstract VH_G onCreateGroupVIEwHolder(VIEw convertVIEw,VIEwGroup parent); public abstract voID onBindGroupVIEwHolder(VH_G vh,K key,int position); public abstract @LayoutRes int getChildLayoutID(); public abstract VH_C onCreateChildVIEwHolder(VIEw convertVIEw,VIEwGroup parent); public abstract voID onBindChildVIEwHolder(VH_C vh,V value,int position); public interface SortKey { } public static class VIEwHolder{ public VIEw mParent; public VIEwHolder(VIEw parent){ mParent = parent; } public VIEw findVIEwByID(@IDRes int ID){ return mParent.findVIEwByID(ID); } }
本项目Github地址(基于AndroIDStudio构建):
https://github.com/yuhengye/LetterSort
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android仿微信联系人列表字母侧滑控件全部内容,希望文章能够帮你解决Android仿微信联系人列表字母侧滑控件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)