- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章android 加载本地联系人实现方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
首先先建布局文件,界面很简单,就是一个搜索框和下面的联系人列表:
复制代码 代码如下
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ffd3d7df" android:orientation="vertical" android:padding="0dip" > <relativelayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginleft="3dip" android:layout_marginright="3dip" android:layout_margintop="3dip" > <edittext android:id="@+id/search_view" android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="@string/hint_search_contacts" android:paddingleft="32dip" android:singleline="true" android:textsize="16sp" /> <imageview android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignleft="@id/search_view" android:layout_centervertical="true" android:layout_marginleft="3dip" android:src="@drawable/contacts" /> </relativelayout> <listview android:id="@+id/contact_list" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginbottom="0dip" android:layout_marginleft="0dip" android:layout_marginright="0dip" android:layout_margintop="0dip" android:layout_weight="1.0" android:cachecolorhint="#00000000" android:divider="#00000000" android:dividerheight="0.1px" android:fadingedge="none" android:footerdividersenabled="false" android:listselector="@null" android:paddingbottom="0dip" android:paddingleft="0dip" android:paddingright="0dip" android:paddingtop="0dip" /> </linearlayout> 。
。
复制代码 代码如下
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="fill_parent" android:paddingtop="2dip" android:paddingbottom="2dip" android:background="@color/list_item_background"> <imageview android:id="@+id/photo" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_marginleft="5dip" android:layout_gravity="center_vertical" android:layout_weight="1" android:src="@drawable/default_avatar" /> <linearlayout android:orientation="vertical" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_gravity="center_vertical" android:layout_marginleft="5dip" android:layout_weight="100"> <textview android:id="@+id/text1" android:typeface="serif" android:singleline="true" style="@style/list_font_main_text" /> <linearlayout android:orientation="horizontal" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_margintop="3dip"> <textview android:id="@+id/text2" android:typeface="serif" android:singleline="true" style="@style/list_font_detail_text" /> <textview android:id="@+id/text3" android:ellipsize="marquee" android:layout_marginleft="3dip" android:marqueerepeatlimit="marquee_forever" android:scrollhorizontally="true" style="@style/list_font_detail_text" /> </linearlayout> </linearlayout> </linearlayout> 。
然后是点击事件:(点击后要把选择的联系人号码返回到输入框里) 。
复制代码 代码如下
// 获取联系人按钮对象并绑定onclick单击事件 phonebutton = (button) findviewbyid(r.id.find_phone); phonebutton.setonclicklistener(new onclicklistener() { public void onclick(view v) { // 从联系人选择号码,再通过onactivityresult()方法处理回调结果 intent intent = new intent(context, contactsactivity.class); startactivityforresult(intent, request_code); } }); /** * 选择联系人的回调处理函数 */ @override public void onactivityresult(int reqcode, int resultcode, intent data) { super.onactivityresult(reqcode, resultcode, data); if (resultcode == result_ok) { switch (reqcode) { case request_code: string phone = data.getstringextra("phone"); phoneedittext.settext(phone); break; } } } 。
下面就是联系人界面的activity了:
复制代码 代码如下
/** * 显示用户手机上的联系人 * * @author mr.z * @time 2012-3-21 * */ public class contactsactivity extends activity { private context ctx = contactsactivity.this; private textview toptitletextview; private listview listview = null; list<hashmap<string, string>> contactslist = null; private edittext contactssearchview; private progressdialog progressdialog = null; // 数据加载完成的消息 private final int message_succ_load = 0; // 数据查询完成的消息 private final int message_succ_query = 1; private handler handler = new handler() { @override public void handlemessage(message msg) { super.handlemessage(msg); switch (msg.what) { case message_succ_load: listview.setadapter(new contactsadapter(ctx)); progressdialog.dismiss(); break; case message_succ_query: listview.setadapter(new contactsadapter(ctx)); break; } } }; protected void oncreate(bundle savedinstancestate) { requestwindowfeature(window.feature_no_title); getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen); super.oncreate(savedinstancestate); this.setcontentview(r.layout.contacts); // 使用listview显示联系人 listview = (listview) findviewbyid(r.id.contact_list); loadandsavecontacts(); // 绑定listview item的单击事件 listview.setonitemclicklistener(new onitemclicklistener() { @suppresswarnings("unchecked") public void onitemclick(adapterview<?> adapterview, view view, int position, long _id) { hashmap<string, string> map = (hashmap<string, string>) adapterview.getitematposition(position); string phone = map.get("phone"); // 对手机号码进行预处理(去掉号码前的+86、首尾空格、“-”号等) phone = phone.replaceall("^(\\+86)", ""); phone = phone.replaceall("^(86)", ""); phone = phone.replaceall("-", ""); phone = phone.trim(); // 如果当前号码并不是手机号码 if (!saleutil.isvalidphonenumber(phone)) saleutil.createdialog(ctx, r.string.dialog_title_tip, getstring(r.string.alert_contacts_error_phone)); else { intent intent = new intent(); intent.putextra("phone", phone); setresult(result_ok, intent); // 关闭当前窗口 finish(); } } }); contactssearchview = (edittext) findviewbyid(r.id.search_view); contactssearchview.addtextchangedlistener(new textwatcher() { public void aftertextchanged(editable s) { } public void beforetextchanged(charsequence s, int start, int count, int after) { } public void ontextchanged(charsequence s, int start, int before, int count) { querycontacts(s.tostring()); } }); } /** * 加载并存储联系人数据 */ private void loadandsavecontacts() { progressdialog = progressdialog.show(ctx, null, "正在加载联系人数据..."); new thread() { @override public void run() { // 获取联系人数据 contactslist = findcontacts(); // 临时存储联系人数据 dbhelper.savecontacts(ctx, contactslist); // 发送消息通知更新ui handler.sendemptymessage(message_succ_load); } }.start(); } /** * 根据条件从本地临时库中获取联系人 * * @param keyword 查询关键字 */ private void querycontacts(final string keyword) { new thread() { @override public void run() { // 获取联系人数据 contactslist = dbhelper.findcontactsbycond(ctx, keyword); // 发送消息通知更新ui handler.sendemptymessage(message_succ_query); } }.start(); } /** * 获取手机联系人信息 * * @return list<hashmap<string, string>> */ public list<hashmap<string, string>> findcontacts() { list<hashmap<string, string>> list = new arraylist<hashmap<string, string>>(); // 查询联系人 cursor contactscursor = ctx.getcontentresolver().query(contactscontract.contacts.content_uri, null, null, null, phonelookup.display_name + " collate localized asc"); // 姓名的索引 int nameindex = 0; // 联系人姓名 string name = null; // 联系人头像id string photoid = null; // 联系人的id索引值 string contactsid = null; // 查询联系人的电话号码 cursor phonecursor = null; while (contactscursor.movetonext()) { nameindex = contactscursor.getcolumnindex(phonelookup.display_name); name = contactscursor.getstring(nameindex); photoid = contactscursor.getstring(contactscursor.getcolumnindex(phonelookup.photo_id)); contactsid = contactscursor.getstring(contactscursor.getcolumnindex(contactscontract.contacts._id)); phonecursor = getcontentresolver().query(contactscontract.commondatakinds.phone.content_uri, null, contactscontract.commondatakinds.phone.contact_id + " = " + contactsid, null, null); // 遍历联系人号码(一个人对应于多个电话号码) while (phonecursor.movetonext()) { hashmap<string, string> phonemap = new hashmap<string, string>(); // 添加联系人姓名 phonemap.put("name", name); // 添加联系人头像 phonemap.put("photo", photoid); // 添加电话号码 phonemap.put("phone", phonecursor.getstring(phonecursor.getcolumnindex(contactscontract.commondatakinds.phone.number))); // 添加号码类型(住宅电话、手机号码、单位电话等) phonemap.put("type", getstring(contactscontract.commondatakinds.phone.gettypelabelresource(phonecursor.getint(phonecursor.getcolumnindex(contactscontract.commondatakinds.phone.type))))); list.add(phonemap); } phonecursor.close(); } contactscursor.close(); return list; } /** * 获取联系人头像 * * @param context 上下文环境 * @param photoid 头像id * @return bitmap */ public static bitmap getphoto(context context, string photoid) { bitmap bitmap = bitmapfactory.decoderesource(context.getresources(), r.drawable.default_avatar); if (photoid != null && "".equals(photoid)) { string[] projection = new string[] { contactscontract.data.data15 }; string selection = "contactscontract.data._id = " + photoid; cursor cur = context.getcontentresolver().query(contactscontract.data.content_uri, projection, selection, null, null); if (cur != null) { cur.movetofirst(); byte[] contacticon = null; contacticon = cur.getblob(cur.getcolumnindex(contactscontract.data.data15)); if (contacticon != null) { bitmap = bitmapfactory.decodebytearray(contacticon, 0, contacticon.length); } } } return bitmap; } /** * 自定义联系人adapter */ class contactsadapter extends baseadapter { private layoutinflater inflater = null; public contactsadapter(context ctx) { inflater = layoutinflater.from(ctx); } public int getcount() { return contactslist.size(); } public object getitem(int position) { return contactslist.get(position); } public long getitemid(int position) { return position; } public view getview(int position, view convertview, viewgroup parent) { viewholder holder = null; if (convertview == null) { holder = new viewholder(); convertview = inflater.inflate(r.layout.contacts_listview_item, null); holder.text1 = (textview) convertview.findviewbyid(r.id.text1); holder.text2 = (textview) convertview.findviewbyid(r.id.text2); holder.text3 = (textview) convertview.findviewbyid(r.id.text3); convertview.settag(holder); } else { holder = (viewholder) convertview.gettag(); } holder.text1.settext(contactslist.get(position).get("name")); holder.text2.settext(contactslist.get(position).get("type")); holder.text3.settext(contactslist.get(position).get("phone")); return convertview; } public final class viewholder { private textview text1; private textview text2; private textview text3; } } } 。
查询方法语句:
复制代码 代码如下
/** * 根据条件查询联系人数据 * * @param context 上下文环境 * @param keyword 查询关键字 * @return list<hashmap<string, string>> */ public static list<hashmap<string, string>> findcontactsbycond(context context, string keyword) { list<hashmap<string, string>> list = new arraylist<hashmap<string, string>>(); sqlitedatabase db = dbhelper.getsqlitedb(context); string sql = "select * from contacts where name like '" + keyword + "%' or name_alias like '" + keyword + "%' order by _id"; // 查询数据 cursor cursor = db.rawquery(sql, null); while (cursor.movetonext()) { hashmap<string, string> map = new hashmap<string, string>(); map.put("name", cursor.getstring(cursor.getcolumnindex("name"))); map.put("phone", cursor.getstring(cursor.getcolumnindex("phone"))); map.put("type", cursor.getstring(cursor.getcolumnindex("type"))); map.put("photo", cursor.getstring(cursor.getcolumnindex("photo"))); list.add(map); } cursor.close(); db.close(); return list; } /** * 存储联系人信息 * * @param context 上下文环境 * @param contactslist 联系人列表 */ public static void savecontacts(context context, list<hashmap<string, string>> contactslist) { sqlitedatabase db = dbhelper.getsqlitedb(context); // 开启事务控制 db.begintransaction(); try { // 先将联系人数据清空 db.execsql("drop table if exists contacts"); db.execsql("create table contacts(_id integer not null primary key autoincrement, name varchar(50), name_alias varchar(10), phone varchar(30), type varchar(50), photo varchar(50))"); string sql = null; for (hashmap<string, string> contactsmap : contactslist) { sql = string.format("insert into contacts(name,name_alias,phone,type,photo) values('%s','%s','%s','%s','%s')", contactsmap.get("name"), saleutil.getpinyinfirstalphabet(contactsmap.get("name")), contactsmap.get("phone"), contactsmap.get("type"), contactsmap.get("photo")); db.execsql(sql); } // 设置事务标志为成功 db.settransactionsuccessful(); } finally { // 结束事务 db.endtransaction(); db.close(); } } 。
工具类:
复制代码 代码如下
/** * 判断客户手机号码是否符合规则 * * @param userphone 客户手机号码 * @return true | false */ public static boolean isvalidphonenumber(string userphone) { if (null == userphone || "".equals(userphone)) return false; pattern p = pattern.compile("^0?1[0-9]{10}"); matcher m = p.matcher(userphone); return m.matches(); } /** * 获取中文的拼音首字母 * * @param chinese 中文 * @return 拼音首字母 */ public static string getpinyinfirstalphabet(string chinese) { string convert = ""; for (int j = 0; j < chinese.length(); j++) { char word = chinese.charat(j); string[] pinyinarray = pinyinhelper.tohanyupinyinstringarray(word); if (pinyinarray != null) { convert += pinyinarray[0].charat(0); } else { convert += word; } } return convert; } 。
最后加上权限就行了,
复制代码 代码如下
<!-- 访问联系人的权限 --> <uses-permission android:name="android.permission.read_contacts" /> 。
最后此篇关于android 加载本地联系人实现方法的文章就讲到这里了,如果你想了解更多关于android 加载本地联系人实现方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我最近在/ drawable中添加了一些.gifs,以便可以将它们与按钮一起使用。这个工作正常(没有错误)。现在,当我重建/运行我的应用程序时,出现以下错误: Error: Gradle: Execu
Android 中有返回内部存储数据路径的方法吗? 我有 2 部 Android 智能手机(Samsung s2 和 s7 edge),我在其中安装了一个应用程序。我想使用位于这条路径中的 sqlit
这个问题在这里已经有了答案: What's the difference between "?android:" and "@android:" in an android layout xml f
我只想知道 android 开发手机、android 普通手机和 android root 手机之间的实际区别。 我们不能从实体店或除 android marketplace 以外的其他地方购买开发手
自Gradle更新以来,我正在努力使这个项目达到标准。这是一个团队项目,它使用的是android-apt插件。我已经进行了必要的语法更改(编译->实现和apt->注释处理器),但是编译器仍在告诉我存在
我是android和kotlin的新手,所以请原谅要解决的一个非常简单的问题! 我已经使用导航体系结构组件创建了一个基本应用程序,使用了底部的导航栏和三个导航选项。每个导航选项都指向一个专用片段,该片
我目前正在使用 Facebook official SDK for Android . 我现在正在使用高级示例应用程序,但我不知道如何让它获取应用程序墙/流/状态而不是登录的用户。 这可能吗?在那种情
我在下载文件时遇到问题, 我可以在模拟器中下载文件,但无法在手机上使用。我已经定义了上网和写入 SD 卡的权限。 我在服务器上有一个 doc 文件,如果用户单击下载。它下载文件。这在模拟器中工作正常但
这个问题在这里已经有了答案: What is the difference between gravity and layout_gravity in Android? (22 个答案) 关闭 9
任何人都可以告诉我什么是 android 缓存和应用程序缓存,因为当我们谈论缓存清理应用程序时,它的作用是,缓存清理概念是清理应用程序缓存还是像内存管理一样主存储、RAM、缓存是不同的并且据我所知,缓
假设应用程序 Foo 和 Eggs 在同一台 Android 设备上。任一应用程序都可以获取设备上所有应用程序的列表。一个应用程序是否有可能知道另一个应用程序是否已经运行以及运行了多长时间? 最佳答案
我有点困惑,我只看到了从 android 到 pc 或者从 android 到 pc 的例子。我需要制作一个从两部手机 (android) 连接的 android 应用程序进行视频聊天。我在想,我知道
用于使用 Android 以编程方式锁定屏幕。我从 Stackoverflow 之前关于此的问题中得到了一些好主意,并且我做得很好,但是当我运行该代码时,没有异常和错误。而且,屏幕没有锁定。请在这段代
文档说: android:layout_alignParentStart If true, makes the start edge of this view match the start edge
我不知道这两个属性和高度之间的区别。 以一个TextView为例,如果我将它的layout_width设置为wrap_content,并将它的width设置为50 dip,会发生什么情况? 最佳答案
这两个属性有什么关系?如果我有 android:noHistory="true",那么有 android:finishOnTaskLaunch="true" 有什么意义吗? 最佳答案 假设您的应用中有
我是新手,正在尝试理解以下 XML 代码: 查看 developer.android.com 上的文档,它说“starStyle”是 R.attr 中的常量, public static final
在下面的代码中,为什么当我设置时单选按钮的外观会发生变化 android:layout_width="fill_parent" 和 android:width="fill_parent" 我说的是
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
假设我有一个函数 fun myFunction(name:String, email:String){},当我调用这个函数时 myFunction('Ali', 'ali@test.com ') 如何
我是一名优秀的程序员,十分优秀!