如题~~
要用到相关的 ContentResolver 和ContentProvider.访问别的程序的数据就需要这个.没有动手弄过.但是看到过这样一段代码[code="java"]Cursor c = getContentResolver().query(People.CONTENT_URL,null,null,null,null);
[/code]这个cursor里面就是通讯录里面的所有联系人 资料了.这段代码来自 深入浅出Google android 第9章.