萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 安卓開發 >> android使用Content Provider的方法

android使用Content Provider的方法

大家知道android使用Content Provider嗎?如果不知道的趕緊看看我們給大家整理出來的教程

我們舉一個讀取Android系統通訊錄提供的Content Provider為例,說明如何使用現成的Content Provider。

1、新建一個項目 Lesson20_ContentProvider項目。

2、res/layout/main.xml內容省略,就是制作一個查詢按鈕。

3、MainContentProvider.java的內容如下:

package android.basic.lesson20;

import android.app.Activity;

import android.content.ContentResolver;

import android.content.ContentValues;

import android.database.Cursor;

import android.net.Uri;

import android.os.Bundle;

import android.provider.ContactsContract;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.Toast;

public class MainContentProvider extends Activity {

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Button b1 = (Button) findViewById(R.id.Button01);

OnClickListener ocl = new OnClickListener() {

@Override

public void onClick(View v) {

ContentResolver contentResolver = getContentResolver();

// 獲得所有的聯系人

Cursor cursor = contentResolver.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);

// 循環遍歷

if (cursor.moveToFirst()) {

int idColumn = cursor.getColumnIndex(ContactsContract.Contacts._ID);

int displayNameColumn = cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME);

do {

// 獲得聯系人的ID號

String contactId = cursor.getString(idColumn);

// 獲得聯系人姓名

String disPlayName = cursor.getString(displayNameColumn);

Toast.makeText(MainContentProvider.this, "聯系人姓名:"+disPlayName,

Toast.LENGTH_LONG).show();

// 查看該聯系人有多少個電話號碼。如果沒有這返回值為0

int phoneCount = cursor.getInt(cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER));

if (phoneCount > 0) {

// 獲得聯系人的電話號碼列表

Cursor phonesCursor = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,

ContactsContract.CommonDataKinds.Phone.CONTACT_ID

+ " = " + contactId, null, null);

if (phonesCursor.moveToFirst()) {

do {

// 遍歷所有的電話號碼

String phoneNumber = phonesCursor

.getString(phonesCursor

.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));

Toast.makeText(MainContentProvider.this, "聯系人電話:"+phoneNumber,

Toast.LENGTH_LONG).show();

} while (phonesCursor.moveToNext());

}

}

} while (cursor.moveToNext());

}

}

};

b1.setOnClickListener(ocl);

}

}

好了,android使用Content Provider精彩內容就給大家介紹到這裡了。希望大家繼續關注我們的網站!

相關推薦:

Androi核心組件是什麼

copyright © 萬盛學電腦網 all rights reserved