你知道嗎?我們天天在手機上使用的聯系人,其本質在Android中也是保存在一個SQLite數據庫中。
它的路徑為:/data/data/com.android.providers.contacts/databases/contacts2.db
android也提供了很多接口,通過ContentResolver().query方法,傳入不同的URI即可訪問相應的數據集。在聯系人數據庫裡面聯系人和電話號碼是分別存在兩個表裡面的,因為存在一個聯系人擁有幾個號碼的情況,所以android為聯系人和手機號碼分別單獨創建了相應的視圖。聯系人信息的視圖裡面只保存與聯系人相關的資料,例如姓名,是否有手機號碼等。而手機號碼資料則是每一個電話號碼為一條記錄,如果有一個聯系人有3個號碼,則裡面會出現3個該聯系人的記錄,號碼分別為他的三個號碼。
如果是需要讀取聯系人信息,傳入的URI為:ContactsContract.Contacts.CONTENT_URI
如果是需要讀取手機號碼信息傳入的URI為:ContactsContract.CommonDataKinds.Phone.CONTENT_URI
一、設計界面
1、布局文件
打開res/layout/activity_main.xml文件。
輸入以下代碼:
[html] view plain copy
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <TextView
- android:id="@+id/textView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="聯系人列表" />
-
- <ListView
- android:id="@+id/contactlist"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
- </ListView>
-
- <Button
- android:id="@+id/read"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="讀取聯系人信息" />
-
- </LinearLayout>
2、自定義ListView文件
打開res/layout/contacts.xml文件。
輸入以下代碼:
[html] view plain copy
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <TextView
- android:id="@+id/_id"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
-
- <TextView
- android:id="@+id/name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
-
-
- </LinearLayout>
二、程序文件
打開“src/com.genwoxue.contentprovider_a/MainActivity.java”文件。
然後輸入以下代碼:
[java] view plain copy
- package com.genwoxue.contentprovider_a;
-
-
- import android.os.Bundle;
- import android.provider.ContactsContract;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.ListView;
- import android.widget.SimpleCursorAdapter;
- import android.app.Activity;
- import android.database.Cursor;
-
- public class MainActivity extends Activity {
-
- private ListView lvContacts=null;
- private Cursor cursor=null;
- private Button btnRead=null;
-
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- lvContacts=(ListView)super.findViewById(R.id.contactlist);
-
-
- btnRead=(Button)super.findViewById(R.id.read);
-
- btnRead.setOnClickListener(new OnClickListener(){
- public void onClick(View v)
- {
- cursor=MainActivity.this.getContentResolver()
- .query(ContactsContract.Contacts.CONTENT_URI,
- null,
- null,
- null,
- null);
- String[] from={ContactsContract.Contacts._ID,ContactsContract.Contacts.DISPLAY_NAME};
- int to[]={R.id._id,R.id.name};
-
- SimpleCursorAdapter adapter = new SimpleCursorAdapter(
- MainActivity.this,
- R.layout.contacts,
- cursor,
- from,
- to);
- lvContacts.setAdapter(adapter);
- }
- });
- }
-
-
- }
三、配置文件
打開“AndroidManifest.xml”文件。
然後輸入以下代碼:
[html] view plain copy
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.genwoxue.contentprovider_a"
- android:versionCode="1"
- android:versionName="1.0" >
-
- <uses-sdk
- android:minSdkVersion="8"
- android:targetSdkVersion="15" />
- <span style="color:#ff0000;"><strong><uses-permission android:name="android.permission.READ_CONTACTS"/>
-
- </strong></span> <application
- android:allowBackup="true"
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name"
- android:theme="@style/AppTheme" >
- <activity
- android:name="com.genwoxue.contentprovider_a.MainActivity"
- android:label="@string/app_name" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
注意:由於要進行讀寫外部存儲卡操作,故而需要在AndroidManifest.xml文件中添加兩項權限:
<uses-permission android:name="android.permission.READ_CONTACTS"/>