Android--操作联系人的ContentProvider
1.main.xml代码如下:
<?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:orientation="vertical" > <TextView android:id="@+id/info" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="手机联系人列表" android:textSize="20px" /> <ListView android:id="@+id/contactlists" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
2.contacts.xml代码如下:
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TableRow> <TextView android:id="@+id/_id" android:layout_width="60px" android:layout_height="wrap_content" android:textSize="15px" /> <TextView android:id="@+id/name" android:layout_width="300px" android:layout_height="wrap_content" android:textSize="15px" /> </TableRow> </TableLayout>3..java代码如下:
package org.lxh.demo; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import android.app.Activity; import android.database.Cursor; import android.os.Bundle; import android.provider.ContactsContract; import android.widget.ListView; import android.widget.SimpleAdapter; public class ContactsDemo extends Activity { private Cursor result = null ; // 既然要查询,查询返回的就是结果 private ListView contactsList = null ; // 定义ListView组件 private List<Map<String,Object>> allContacts = null ; private SimpleAdapter simple = null ; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); super.setContentView(R.layout.main); this.contactsList = (ListView) super.findViewById(R.id.contactsList) ; // 取得组件 this.result = super.getContentResolver().query( ContactsContract.Contacts.CONTENT_URI, null, null, null, null); // 查询 super.startManagingCursor(this.result) ; // 将结果集交给容器管理 this.allContacts = new ArrayList<Map<String,Object>>() ; // 实例化List集合 for (this.result.moveToFirst(); !this.result.isAfterLast(); this.result .moveToNext()) { // 取出结果集中的每一个内容 Map<String,Object> contact = new HashMap<String,Object>() ; contact.put("_id", this.result.getInt(this.result .getColumnIndex(ContactsContract.Contacts._ID))); contact.put("name", this.result.getString(this.result .getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME))); this.allContacts.add(contact) ; } this.simple = new SimpleAdapter(this, this.allContacts, R.layout.contacts, new String[] { "_id", "name" }, new int[] { R.id._id, R.id.name }); this.contactsList.setAdapter(this.simple) ; } }
显示如下:
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。