如何手动添加联系人组到Android数据库?
我想定义一些联系人组。
我想知道 Android 在哪里以及如何存储这些组。也许在 Sqlite 数据库中?
如果是这样,可以在上面运行插入吗?
否则如何通过模拟器添加新的联系人组?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你绝对不能直接插入。您需要查看ContentProviders,< a href="http://developer.android.com/intl/de/reference/android/provider/Contacts.Groups.html" rel="nofollow noreferrer">Contacts.Groups 和 ContactsContract。
You definitely can't do an insert directly. You need to look into ContentProviders, Contacts.Groups and ContactsContract.
要以编程方式添加联系人组:
To add a contact group programmatically: