android2.3中查询联系人信息,代码如下,但是有一点就是下面的string[]中的xxx,yyyy地方应该怎么填写。。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android2.3中查询联系人信息,代码如下,但是有一点就是下面的string[]中的xxx,yyyy地方应该怎么填写。。相关的知识,希望对你有一定的参考价值。

Cursor cursor=getContentResolver().query(Contacts.CONTENT_URI, null, null, null, null);
//启动管理Cursor
startManagingCursor(cursor);

ListAdapter adapter=new SimpleCursorAdapter(
this,
android.R.layout.simple_expandable_list_item_2,
cursor,
new String[] xxxx,yyyyy ,
new int[]android.R.id.text1,android.R.id.text2);

根据text1,和text2来写,如果在text1里显示的是姓名,xxx就代表姓名,数组里代表姓名的字段名 参考技术A 你要显示的对应的数据库字段名

以上是关于android2.3中查询联系人信息,代码如下,但是有一点就是下面的string[]中的xxx,yyyy地方应该怎么填写。。的主要内容,如果未能解决你的问题,请参考以下文章

Android 2.3 和 Android 4.0 上的联系人照片 uri

查询联系人的组织,但获取地址类型和值

适用于 Android 2.2 但不适用于 Android 2.3

在单个查询中获取联系人的详细信息

How to build Windows Android2.3 SDK怎么编译windows下的android2.3 SDK

在 Ubuntu20.04中能编译 Android2.3 吗?