大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这期内容当中小编将会给大家带来有关怎么在android中仿微信好友列表功能,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
创新互联长期为千余家客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为商洛企业提供专业的成都网站设计、网站制作,商洛网站改版等技术服务。拥有十年丰富建站经验和众多成功案例,为您定制开发。
(1)在build.gradle中引用第三方的类库
compile 'com.android.support:recyclerview-v7:26.0.0-alpha1' compile files('libs/pinyin4j-2.5.0.jar')
(2)在MainActivity:
public class MainActivity extends AppCompatActivity { //参考网址:https://github.com/JanecineJohn/WeChatList private RecyclerView contactList; private String[] contactNames; private LinearLayoutManager layoutManager; private LetterView letterView; private ContactAdapter adapter; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); contactNames = new String[] {"安然","奥兹","德玛","张三丰", "郭靖", "黄蓉", "黄老邪", "赵敏", "123", "天山童姥", "任我行", "于万亭", "陈家洛", "韦小宝", "$6", "穆人清", "陈圆圆", "郭芙", "郭襄", "穆念慈", "东方不败", "梅超风", "林平之", "林远图", "灭绝师太", "段誉", "鸠摩智"}; contactList = (RecyclerView) findViewById(R.id.contact_list); letterView = (LetterView) findViewById(R.id.letter_view); layoutManager = new LinearLayoutManager(this); adapter = new ContactAdapter(this, contactNames); contactList.setLayoutManager(layoutManager); contactList.addItemDecoration(new DividerItemDecoration(this, DividerItemDecoration.VERTICAL_LIST)); contactList.setAdapter(adapter); letterView.setCharacterListener(new LetterView.CharacterClickListener() { @Override public void clickCharacter(String character) { layoutManager.scrollToPositionWithOffset(adapter.getScrollPosition(character),0); } @Override public void clickArrow() { layoutManager.scrollToPositionWithOffset(0,0); } }); } } (3)Contact类 public class Contact implements Serializable { private String mName; private int mType; public Contact(String name, int type) { mName = name; mType = type; } public String getmName() { return mName; } public int getmType() { return mType; } }
(3)listview好友列表适配器,在这里设置显示的用户名和头像,并且添加点击事件 ContactAdapter
public class ContactAdapter extends RecyclerView.Adapter{ private LayoutInflater mLayoutInflater; private Context mContext; private String[] mContactNames; // 联系人名称字符串数组 private List mContactList; // 联系人名称List(转换成拼音) private List resultList; // 最终结果(包含分组的字母) private List characterList; // 字母List public enum ITEM_TYPE { ITEM_TYPE_CHARACTER, ITEM_TYPE_CONTACT } public ContactAdapter(Context context, String[] contactNames) { mContext = context; mLayoutInflater = LayoutInflater.from(context); mContactNames = contactNames; handleContact(); } private void handleContact() { mContactList = new ArrayList<>(); Map map = new HashMap<>(); for (int i = 0; i < mContactNames.length; i++) { String pinyin = Utils.getPingYin(mContactNames[i]); map.put(pinyin, mContactNames[i]); mContactList.add(pinyin); } Collections.sort(mContactList, new ContactComparator()); resultList = new ArrayList<>(); characterList = new ArrayList<>(); for (int i = 0; i < mContactList.size(); i++) { String name = mContactList.get(i); String character = (name.charAt(0) + "").toUpperCase(Locale.ENGLISH); if (!characterList.contains(character)) { if (character.hashCode() >= "A".hashCode() && character.hashCode() <= "Z".hashCode()) { // 是字母 characterList.add(character); resultList.add(new Contact(character, ITEM_TYPE.ITEM_TYPE_CHARACTER.ordinal())); } else { if (!characterList.contains("#")) { characterList.add("#"); resultList.add(new Contact("#", ITEM_TYPE.ITEM_TYPE_CHARACTER.ordinal())); } } } resultList.add(new Contact(map.get(name), ITEM_TYPE.ITEM_TYPE_CONTACT.ordinal())); } } @Override public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { if (viewType == ITEM_TYPE.ITEM_TYPE_CHARACTER.ordinal()) { return new CharacterHolder(mLayoutInflater.inflate(R.layout.item_character, parent, false)); } else { return new ContactHolder(mLayoutInflater.inflate(R.layout.item_contact, parent, false)); } } @Override public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) { if (holder instanceof CharacterHolder) { ((CharacterHolder) holder).mTextView.setText(resultList.get(position).getmName()); } else if (holder instanceof ContactHolder) { ((ContactHolder) holder).mTextView.setText(resultList.get(position).getmName()); } } @Override public int getItemViewType(int position) { return resultList.get(position).getmType(); } @Override public int getItemCount() { return resultList == null ? 0 : resultList.size(); } public class CharacterHolder extends RecyclerView.ViewHolder { TextView mTextView; CharacterHolder(View view) { super(view); mTextView = (TextView) view.findViewById(R.id.character); } } public class ContactHolder extends RecyclerView.ViewHolder { TextView mTextView; ContactHolder(View view) { super(view); mTextView = (TextView) view.findViewById(R.id.contact_name); } } public int getScrollPosition(String character) { if (characterList.contains(character)) { for (int i = 0; i < resultList.size(); i++) { if (resultList.get(i).getmName().equals(character)) { return i; } } } return -1; // -1不会滑动 } }
(4)ContactComparator 做英文字母的判断
public class ContactComparator implements Comparator{ @Override public int compare(String o1, String o2) { int c1 = (o1.charAt(0) + "").toUpperCase().hashCode(); int c2 = (o2.charAt(0) + "").toUpperCase().hashCode(); boolean c1Flag = (c1 < "A".hashCode() || c1 > "Z".hashCode()); // 不是字母 boolean c2Flag = (c2 < "A".hashCode() || c2 > "Z".hashCode()); // 不是字母 if (c1Flag && !c2Flag) { return 1; } else if (!c1Flag && c2Flag) { return -1; } return c1 - c2; } }
(5)DividerItemDecoration
public class DividerItemDecoration extends RecyclerView.ItemDecoration { private static final int[] ATTRS = new int[]{ android.R.attr.listDivider }; public static final int HORIZONTAL_LIST = LinearLayoutManager.HORIZONTAL; public static final int VERTICAL_LIST = LinearLayoutManager.VERTICAL; private Drawable mDivider; private int mOrientation; public DividerItemDecoration(Context context, int orientation) { final TypedArray a = context.obtainStyledAttributes(ATTRS); mDivider = a.getDrawable(0); a.recycle(); setOrientation(orientation); } private void setOrientation(int orientation) { if (orientation != HORIZONTAL_LIST && orientation != VERTICAL_LIST) { throw new IllegalArgumentException("invalid orientation"); } mOrientation = orientation; } @Override public void onDraw(Canvas c, RecyclerView parent) { if (mOrientation == VERTICAL_LIST) { drawVertical(c, parent); } else { drawHorizontal(c, parent); } } // @Override // public void onDraw(Canvas c, RecyclerView parent, RecyclerView.State state) { // //super.onDraw(c, parent, state); // if (mOrientation == VERTICAL_LIST) { // drawVertical(c, parent); // } else { // drawHorizontal(c, parent); // } // } public void drawVertical(Canvas c, RecyclerView parent) { final int left = parent.getPaddingLeft(); final int right = parent.getWidth() - parent.getPaddingRight(); final int childCount = parent.getChildCount(); for (int i = 0; i < childCount; i++) { final View child = parent.getChildAt(i); final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child .getLayoutParams(); final int top = child.getBottom() + params.bottomMargin + Math.round(ViewCompat.getTranslationY(child)); final int bottom = top + mDivider.getIntrinsicHeight(); mDivider.setBounds(left, top, right, bottom); mDivider.draw(c); } } public void drawHorizontal(Canvas c, RecyclerView parent) { final int top = parent.getPaddingTop(); final int bottom = parent.getHeight() - parent.getPaddingBottom(); final int childCount = parent.getChildCount(); for (int i = 0; i < childCount; i++) { final View child = parent.getChildAt(i); final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child .getLayoutParams(); final int left = child.getRight() + params.rightMargin + Math.round(ViewCompat.getTranslationX(child)); final int right = left + mDivider.getIntrinsicHeight(); mDivider.setBounds(left, top, right, bottom); mDivider.draw(c); } } @Override public void getItemOffsets(Rect outRect, int itemPosition, RecyclerView parent) { if (mOrientation == VERTICAL_LIST) { outRect.set(0, 0, 0, mDivider.getIntrinsicHeight()); } else { outRect.set(0, 0, mDivider.getIntrinsicWidth(), 0); } } // @Override // public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) { // if (mOrientation == VERTICAL_LIST){ // outRect.set(0,0,0,mDivider.getIntrinsicHeight()); // }else { // outRect.set(0,0,mDivider.getIntrinsicWidth(),0); // } // } }
(6)LetterView
public class LetterView extends LinearLayout{ private Context mContext; private CharacterClickListener mListener; public LetterView(Context context,AttributeSet attrs) { super(context, attrs); mContext = context;//接收传进来的上下文 setOrientation(VERTICAL); initView(); } private void initView(){ addView(buildImageLayout()); for (char i = 'A';i<='Z';i++){ final String character = i + ""; TextView tv = buildTextLayout(character); addView(tv); } addView(buildTextLayout("#")); } private TextView buildTextLayout(final String character){ LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT,1); TextView tv = new TextView(mContext); tv.setLayoutParams(layoutParams); tv.setGravity(Gravity.CENTER); tv.setClickable(true); tv.setText(character); tv.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { if (mListener != null){ mListener.clickCharacter(character); } } }); return tv; } private ImageView buildImageLayout() { LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1); ImageView iv = new ImageView(mContext); iv.setLayoutParams(layoutParams); iv.setBackgroundResource(R.mipmap.ic_launcher); iv.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { if (mListener != null) { mListener.clickArrow(); } } }); return iv; } public void setCharacterListener(CharacterClickListener listener) { mListener = listener; } public interface CharacterClickListener { void clickCharacter(String character); void clickArrow(); } }
(7)Utils
public class Utils { public static String getPingYin(String inputString) { HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat(); format.setCaseType(HanyuPinyinCaseType.LOWERCASE); format.setToneType(HanyuPinyinToneType.WITHOUT_TONE); format.setVCharType(HanyuPinyinVCharType.WITH_V); char[] input = inputString.trim().toCharArray(); String output = ""; try { for (char curchar : input) { if (java.lang.Character.toString(curchar).matches("[\\u4E00-\\u9FA5]+")) { String[] temp = PinyinHelper.toHanyuPinyinStringArray(curchar, format); output += temp[0]; } else { output += java.lang.Character.toString(curchar); } } } catch (BadHanyuPinyinOutputFormatCombination e) { e.printStackTrace(); } return output; } }
Android是一种基于Linux内核的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由美国Google公司和开放手机联盟领导及开发。
上述就是小编为大家分享的怎么在android中仿微信好友列表功能了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注创新互联行业资讯频道。