如何以编程方式将图片(位图)分配给联系人?
我有一个位图类型的变量,我想将其作为 CalledID 图片分配给我的联系人列表中的联系人,我该怎么做?
I have a variable of type Bitmap and I would like to assign it to a Contact from my contact list as the CalledID picture, how would I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须为这些创建您自己的哑剧类型。
下面是一个将布尔值作为我的自定义 MIME 类型保存到联系人的示例。它使用最新的 SDK 2.1
重要
此示例使用 DATA1 存储数据,DATA1 已建立索引,但不建议用于二进制数据。
在您的情况下,要存储二进制数据(例如图片),您必须使用 DATA15。
按照惯例,DATA15 用于存储 BLOB(二进制数据)。
用法是
You have to creat your own mime type for those.
Here is an example that saves a boolean as my custom mime type to the contacts. It uses the latest SDK 2.1
Important
This example uses DATA1 for data, DATA1 is indexed but it's not recomended for binary data.
In your case to store binary data such as Picture you have to use DATA15.
By convention, DATA15 is used for storing BLOBs (binary data).
Usage is