Android(3_2)-----模仿微信界面:通讯录页面
生活随笔
收集整理的這篇文章主要介紹了
Android(3_2)-----模仿微信界面:通讯录页面
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
自定義適配器:
private class myBaseAdapter extends BaseAdapter {private ArrayList<Contect> list;public myBaseAdapter() {}public myBaseAdapter(ArrayList<Contect> list) {this.list = list;}@Overridepublic int getCount() {return list.size();}@Overridepublic Object getItem(int position) {return list.get(position);}@Overridepublic long getItemId(int position) {return position;}@Overridepublic View getView(int position, View convertView, ViewGroup parent) {Contect contect= (Contect) getItem(position);//傳進來的list的某一項if(convertView==null){LayoutInflater inflater=LayoutInflater.from(getContext());convertView=inflater.inflate(R.layout.contect_item,parent,false);}TextView letter_Contect=convertView.findViewById(R.id.letter_Contect);ImageView contect_Head=convertView.findViewById(R.id.contect_Head);TextView contect_Name=convertView.findViewById(R.id.contect_Name);letter_Contect.setText(contect.getLetter());contect_Head.setImageResource(contect.getHead());contect_Name.setText(contect.getName());return convertView;}}重點是getView()方法:
if(convertView==null){LayoutInflater inflater=LayoutInflater.from(getContext());convertView=inflater.inflate(R.layout.contect_item,parent,false);}?
?
BaseAdapter:https://blog.csdn.net/yelbosh/article/details/7831812
轉載于:https://www.cnblogs.com/Lemonades/p/10759595.html
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的Android(3_2)-----模仿微信界面:通讯录页面的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [Nginx]用Nginx实现与应用结合
- 下一篇: springboot+security整