python for android : 读通讯录

参考:  \sl4a\doc\ContactsFacade.html

读通讯录: id,姓名,电话号码

contacts.py

import android
import os,sys
reload(sys)
sys.setdefaultencoding(‘utf-8‘)

droid = android.Android()
ids = droid.contactsGetIds().result
for i in ids:
    uri = ‘content://contacts/people/‘+str(i)+‘/phones‘
    res = droid.queryContent(uri).result[0]
    #print res
    print str(i),res[‘name‘],res[‘number‘]



python for android : 读通讯录,布布扣,bubuko.com

python for android : 读通讯录

上一篇:由360手机卫士谈起——让你的service获取最高权限。


下一篇:Android开发效率—Eclipse快捷键