Activity的使用(九): 读取联系人

package com.example.androidtest;

import android.os.Bundle;
import android.app.ListActivity;
import android.view.Menu;
import android.net.Uri;
import android.provider.ContactsContract;
import android.database.Cursor;
import android.widget.SimpleCursorAdapter;
import android.util.Log;
import android.content.ContentProvider;

public class AndroidTest extends ListActivity {
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_android_test);
		
		Uri allContacts = ContactsContract.Contacts.CONTENT_URI;
		
		Cursor c = getContentResolver().query(allContacts, null, null, null, null);
		startManagingCursor(c);
		
		String[] columns = new String[]{ContactsContract.Contacts._ID, 
										ContactsContract.Contacts.DISPLAY_NAME};
		int[] views = new int[]{R.id.contactName, R.id.contactID};
		
		SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.activity_android_test, c, columns, views);
		this.setListAdapter(adapter);
		
		PrintContacts(c);
	}
	
	private void PrintContacts(Cursor c)
	{
		if (c.moveToFirst()) {
			do {
				String contactId = c.getString(c.getColumnIndex(ContactsContract.Contacts._ID));
				String contactDisplayName = c.getString(c.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
				Log.v("Content Providers", contactId + "," + contactDisplayName);
				int hasPhone = c.getInt(c.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER));
				if (hasPhone == 1) {
					Cursor phoneCursor = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, 
																	null, ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = " + contactId, 
																	null, null);
					while (phoneCursor.moveToNext()) {
						Log.v("Content Providers", phoneCursor.getString(phoneCursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)));
					}
					phoneCursor.close();
				}
			} while (c.moveToNext());
		}
	}
	
	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.android_test, menu);
		return true;
	}

	
}

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <ListView 
        android:id="@+id/android:list" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:layout_weight="1" 
        android:stackFromBottom="false" 
        android:transcriptMode="normal" 
        /> 
    <TextView   
        android:id="@+id/contactName"
        android:textStyle="bold"   
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        /> 
    <TextView   
        android:id="@+id/contactID" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
       />   

</LinearLayout>

需要添加权限:

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



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

kgduu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值