使用内容提供者——Contacts

作者:追风剑情 发布于:2015-8-18 22:19 分类:Android

使用内容提供者contacts获取手机中所有联系人,并显示在列表中。

一、在AndroidManifest.xml中添加权限

  1. <uses-permission android:name="android.permission.READ_CONTACTS" />

二、创建活动

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <ListView
  9. android:id="@+id/android:list"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_weight="1"
  13. android:stackFromBottom="false"
  14. android:transcriptMode="normal" />
  15. <TextView
  16. android:id="@+id/contactName"
  17. android:textStyle="bold"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content" />
  20.  
  21. <TextView
  22. android:id="@+id/contactID"
  23. android:layout_width="fill_parent"
  24. android:layout_height="wrap_content" />
  25. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.ListActivity;
  4. import android.content.CursorLoader;
  5. import android.database.Cursor;
  6. import android.net.Uri;
  7. import android.os.Bundle;
  8. import android.provider.ContactsContract;
  9. import android.widget.SimpleCursorAdapter;
  10. import android.widget.CursorAdapter;
  11.  
  12. public class ProviderActivity extends ListActivity {
  13.  
  14. @Override
  15. public void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. setContentView(R.layout.activity_provider);
  18. Uri allContacts = ContactsContract.Contacts.CONTENT_URI;
  19. //等价于:
  20. //Uri allContacts = Uri.parse("content://contacts/people");
  21. Cursor c;
  22. if (android.os.Build.VERSION.SDK_INT < 11) {
  23. c = managedQuery(allContacts, null, null, null, null);
  24. //等价于:
  25. //c = getContentResolver().query(allContacts, null, null, null, null);
  26. //startManagingCursor(c);
  27. } else {
  28. CursorLoader cursorLoader = new CursorLoader(this, allContacts, null,null,null,null);
  29. c = cursorLoader.loadInBackground();
  30. }
  31. String[] columns = new String[] {
  32. ContactsContract.Contacts.DISPLAY_NAME,
  33. ContactsContract.Contacts._ID
  34. };
  35. int[] views = new int[] {R.id.contactName, R.id.contactID};
  36. SimpleCursorAdapter adapter;
  37. if (android.os.Build.VERSION.SDK_INT < 11) {
  38. adapter = new SimpleCursorAdapter(
  39. this, R.layout.activity_provider, c, columns, views);
  40. } else {
  41. adapter = new SimpleCursorAdapter(
  42. this, R.layout.activity_provider, c, columns, views, CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
  43. }
  44. //必须使用默认id: "@+id/android:list" 才能使用setListAdapter();
  45. this.setListAdapter(adapter);
  46. }
  47. }

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号