更改联系人
我正在制作 Android 应用程序,它可以告诉您联系人号码的运营商名称。
有没有办法将包含操作员姓名的标签直接放在联系人列表中的每个号码旁边?
I'm making android app that tells you the operator's name of your contact's number.
Is there a way to put a label containing the name of the operator next to every number directly in the contacts list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要创建自己的同步提供程序和自己的 RawContacts 表。填写姓名、电话号码和您需要的数据(例如运营商名称)。不容易。任务 这里有一篇非常好的帖子,其中包含很多详细信息:
http://www.c99.org/2010/01/23/writing-an-android-sync-provider-part-1/
http://www.c99.org/ 2010/01/23/writing-an-android-sync-provider-part-2/
android 技术资源页面中有一个示例:http://developer.android.com/resources/samples/SampleSyncAdapter/index.html
You will need to create your own sync provider and your own RawContacts table. Fill it up with name, phone number and the data you need (e.g., the operator name). Not an easy. task There's a very nice post with lots of details here:
http://www.c99.org/2010/01/23/writing-an-android-sync-provider-part-1/
http://www.c99.org/2010/01/23/writing-an-android-sync-provider-part-2/
There's an example in the android Technical Resources pages: http://developer.android.com/resources/samples/SampleSyncAdapter/index.html