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);
以上是关于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