我正在使用Blackberry中的CallLogs Sync Application,部分我已经完成了,我不明白的一点是如何向CallLogs添加信息。我从CallLogs和Store on Server检索了信息,但现在我从服务器检索了信息但是如何向CallLogs添加信息并没有出现在我脑海中,因为我从服务器和PhoneCallLog构造函数中检索了字符串中的所有信息,如下所示:
PhoneCallLog call = new PhoneCallLog(Date,int Type,int Duration,int Status,participantID Participors,String Notes);
请尽快告诉我,我将非常感谢你。
答案 0 :(得分:1)
类net.rim.blackberry.api.phone.phonelogs.PhoneLogs
具有添加日志项的方法addCall(CallLog call)
。
使用您发布的构造函数创建PhoneCallLog
实例,并将其添加到PhoneLogs
。您需要签署应用程序才能使用这些方法。 (见http://www.blackberry.com/go/codesigning)