¡@

Home 

2014/10/16 ¤W¤È 08:21:25

android Programming Glossary: personid

Read all contact's phone numbers in android

http://stackoverflow.com/questions/2356084/read-all-contacts-phone-numbers-in-android

numbers associated with a contact in the following manner Uri personUri ContentUris.withAppendedId People.CONTENT_URI personId Uri phonesUri Uri.withAppendedPath personUri People.Phones.CONTENT_DIRECTORY String proj new String Phones._ID Phones.TYPE..

How do I add contact to a group on Android?

http://stackoverflow.com/questions/2491546/how-do-i-add-contact-to-a-group-on-android

out what URI use to insert to. I have prepared this method public static Uri addToGroup ContentResolver resolver long personId long groupId ContentValues values new ContentValues values.put ContactsContract.CommonDataKinds.GroupMembership.CONTACT_ID.. groupId ContentValues values new ContentValues values.put ContactsContract.CommonDataKinds.GroupMembership.CONTACT_ID personId values.put ContactsContract.CommonDataKinds.GroupMembership.GROUP_ROW_ID groupId return resolver.insert uri values URI is.. android sdk 2.1 share improve this question I found the resolution and I post it here public Uri addToGroup long personId long groupId remove if exists this.removeFromGroup personId groupId ContentValues values new ContentValues values.put ContactsContract.CommonDataKinds.GroupMembership.RAW_CONTACT_ID..