views:

583

answers:

2

I want to define some Contact Groups.

I am wondering where and how does Android store the groups. Maybe in a Sqlite database?
If so, will be able to run a insert on it?

Otherwise how do you add new Contacts Group via the emulator?

+1  A: 

You definitely can't do an insert directly. You need to look into ContentProviders, Contacts.Groups and ContactsContract.

mbaird
A: 

could u please help me to insert the contacts into the contacts database.

arti
Check out this tutorial http://www.higherpass.com/Android/Tutorials/Working-With-Android-Contacts/1/
Pentium10