Android实现可浏览和搜索的联系人列表
通过这篇文章,我想说明一下如何创建一个可搜索的“联系人列表”android应用程序。使用这个应用程序,用户可以通过使用导航按钮浏览所有保存的联系人和根据联系人名称搜索联系人。该应用程序还可以显示联系人的照片(如果可用)。
要浏览联系人列表可以使用<<,<,>和>>按钮。
要搜索联系人的用户在“搜索名称”文本框中键入联系人名称,然后单击“搜索”按钮。点击“清除搜索”按钮,清除“搜索名称”文本框中,并显示开始搜索前,最后一次查看的联系人。
由于该应用从设备读取联系人,以下条目需要在androidmanifest.xml文件,以允许权限应用读取联系人:
<uses-permission android:name="android.permission.read_contacts"/>
下面的代码创建一个表格布局显示联系人:
<tablelayout xmlns:android="<a href="http://schemas.android.com/apk/res/android"" rel="nofollow" target="_blank">http://schemas.android.com/apk/res/android"</a> android:layout_height="match_parent" android:layout_width="350dp"> <tablerow> <textview android:id="@+id/txtid" android:width="175dp" android:text="contact id: "/> <textview android:id="@+id/txtidval" android:width="175dp"/> </tablerow> <tablerow> <textview android:id="@+id/txtdisplayname" android:width="175dp" android:text="contact name: "/> <textview android:id="@+id/txtdisplaynameval" android:width="175dp"/> </tablerow> <tablerow> <textview android:id="@+id/txtphoneno" android:width="175dp" android:text="phone number: "/> <textview android:id="@+id/txtphonenoval" android:width="175dp"/> </tablerow> <tablerow> <textview android:id="@+id/txtphoto" android:width="175dp" android:text="photo: "/> <imageview android:id="@+id/imgphoto" android:width="175dp"/> </tablerow> <tablerow> <button android:id="@+id/btnfirst" android:width="175dp" android:text="<<" android:onclick="first"/> <button android:id="@+id/btnprevious" android:width="175dp" android:text="<" android:onclick="previous"/> </tablerow> <tablerow> <button android:id="@+id/btnnext" android:width="175dp" android:text=">" android:onclick="next"/> <button android:id="@+id/btnlast" android:width="175dp" android:text=">>" android:onclick="last"/> </tablerow> <tablerow> <textview android:id="@+id/txtsearch" android:width="175dp" android:text="search name: "/> <autocompletetextview android:id="@+id/txtsearchval" android:width="175dp"/> </tablerow> <tablerow> <button android:id="@+id/btnsearch" android:width="175dp" android:text="search" android:onclick="search"/> <button android:id="@+id/btnclearsearch" android:width="175dp" android:text="clear search" android:onclick="clearsearch"/> </tablerow> </tablelayout>
检索图像的地址,并使用以下命令访问联系人:
uri contacts=contactscontract.contacts.content_uri;
接下来,我们创建一个cursorloader对象按联系人姓名的升序加载所有联系人,如下:
cursorloader loader=new
cursorloader(this,contacts,null,null,null,contactscontract.contacts.display_name+" asc");
该cursorloader构造采用下列参数:
·context context
·uri uri
·string projection
·string selection
·string selectionargs
·string sortorder
下面的代码将联系人名称填充字符串数组中:
c=loader.loadinbackground(); names=new string<span>[</span>c.getcount()]; int ctr=0; while(c.movetonext()) { names<span>[</span>ctr]=c.getstring(c.getcolumnindex(contactscontract.contacts.display_name)); ctr++; }
在上面的代码中,联系人被加载到cursor对象,该对象是一个使用loadinbackground()方法的cursorloader类。所有联系人姓名存储在一个字符串数组中,并使用cursor类中的movetonext()方法浏览所有联系人。
此后一个arrayadapter被用于将联系人姓名绑定到autocompletetextview如下:
public void showcontact(cursor c) { string id=c.getstring(c.getcolumnindex(contactscontract.contacts._id)); string displayname=c.getstring(c.getcolumnindex(contactscontract.contacts.display_name)); bitmap photo; inputstream stream=contactscontract.contacts.opencontactphotoinputstream (getcontentresolver(),contenturis.withappendedid(contactscontract.contacts.content_uri,long.parselong(id))); if(stream!=null) { photo=bitmapfactory.decodestream(stream); imgphoto.setimagebitmap(photo); } else { imgphoto.setimagebitmap(null); } cursor phonecursor=getcontentresolver().query (contactscontract.commondatakinds.phone.content_uri,null,contactscontract.commondatakinds.phone.contact_id+"="+id,null,null); string number=""; if(phonecursor.getcount()>0) { phonecursor.movetofirst(); number=phonecursor.getstring(phonecursor.getcolumnindex(contactscontract.commondatakinds.phone.number)); while(phonecursor.movetonext()) { number+=","+phonecursor.getstring(phonecursor.getcolumnindex(contactscontract.commondatakinds.phone.number)); } } phonecursor.close(); txtidval.settext(id); txtdisplaynameval.settext(displayname); txtphonenoval.settext(number); enabledisablebuttons(); }
上面的代码使用cursor参数获取联系人的id,显示姓名,照片和电话号码。它使用opencontactphotoinputstream()方法来为照片返回输入流和decodestream()方法来读取照片。然后,它使用的setimagebitmap()方法在imageview上显示联系人照片。当信息存储在另一个表时,为了显示电话号码我们必须使用另一查询。
以下代码启用和禁用基于所述查询结果的导航按钮:
public void enabledisablebuttons() { if(c.isfirst()&&c.islast()) { btnfirst.setenabled(false); btnprevious.setenabled(false); btnnext.setenabled(false); btnlast.setenabled(false); } else if(c.isfirst()) { btnfirst.setenabled(false); btnprevious.setenabled(false); btnnext.setenabled(true); btnlast.setenabled(true); } else if(c.islast()) { btnfirst.setenabled(true); btnprevious.setenabled(true); btnnext.setenabled(false); btnlast.setenabled(false); } else { btnfirst.setenabled(true); btnprevious.setenabled(true); btnnext.setenabled(true); btnlast.setenabled(true); } }
点击搜索按钮允许你基于名称在搜索文本框中搜索联系方式,如下:
public void search(view v) { position=c.getposition(); if(txtsearchval.gettext().tostring().trim().length()>0) { uri contacts=contactscontract.contacts.content_uri; cursorloader loader=new cursorloader (this,contacts,null,contactscontract.contacts.display_name+"='"+txtsearchval.gettext().tostring()+"'",null, contactscontract.contacts.display_name+" asc"); c=loader.loadinbackground(); if(c.getcount()>0) { c.movetofirst(); } } else { uri contacts=contactscontract.contacts.content_uri; cursorloader loader=new cursorloader (this,contacts,null,null,null,contactscontract.contacts.display_name+" asc"); c=loader.loadinbackground(); c.move(position); c.movetonext(); } if(c.getcount()==0) { toast.maketext(this,"no results found for contact "+txtsearchval.gettext().tostring(),toast.length_short).show(); showall(); return; } showcontact(c); }
上面的代码实现了通过联系人姓名找到联系方式功能。
点击清除搜索文本框执行下面的代码:
public void clearsearch(view view) { showall(); txtsearchval.settext(""); } showall()方法显示所有联系人,如下: public void showall() { uri contacts=contactscontract.contacts.content_uri; cursorloader loader=new cursorloader(this,contacts,null,null,null,contactscontract.contacts.display_name+" asc"); c=loader.loadinbackground(); c.move(position); c.movetonext(); showcontact(c); }
下面的代码可以使用导航按钮导航:
public void first(view v) { c.movetofirst(); showcontact(c); } public void previous(view v) { c.movetoprevious(); showcontact(c); } public void next(view v) { c.movetonext(); showcontact(c); } public void last(view v) { c.movetolast(); showcontact(c); }
效果图:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Android实现可浏览和搜索的联系人列表
-
Android实现带列表的地图POI周边搜索功能
-
Android实现带列表的地图POI周边搜索功能
-
微信浏览器弹出框滑动时页面跟着滑动的实现代码(兼容Android和IOS端)
-
微信浏览器弹出框滑动时页面跟着滑动的实现代码(兼容Android和IOS端)
-
Android实现ListView的A-Z字母排序和过滤搜索功能 实现汉字转成拼音
-
Android编程实现图片的浏览、缩放、拖动和自动居中效果
-
android开发实现列表控件滚动位置精确保存和恢复的方法(推荐)
-
Android实现ListView的A-Z字母排序和过滤搜索功能 实现汉字转成拼音
-
Android编程实现图片的浏览、缩放、拖动和自动居中效果