1

カスケード API を使用してプログラムで Blackberry10 に sms/mms をインポート/エクスポートすることは可能ですか??

4

1 に答える 1

2

SMS は、実際には他のメッセージ (電子メールなど) と同じ API を使用します。主な違いは、SMS アカウントを具体的に選択する必要があり、会話の一部として構築する必要があることです。

BlackBerry PIM API のメッセージ部分を使用して、次のようなことを試してください。

            MessageService messageService;
            AccountService accountService;
            //Get the SMS/MMS account
            QList<Account> accountList = accountService.accounts(Service::Messages,"sms-mms");
            AccountKey accountId =  accountList.first().id();
            // Create a contact to whom you want to send sms/mms. Put the right phone number in yourself
            int contactKey   = -1;
            MessageContact recipient = MessageContact(contactKey, MessageContact::To,"5555555555", "5555555555");

            //Create a conversation  because sms/mms chats most of the time is a conversation
            ConversationBuilder* conversationBuilder = ConversationBuilder::create();
            conversationBuilder->accountId(accountId);
            QList<MessageContact> participants;

            participants.append(recipient);

            conversationBuilder->participants(participants);

            Conversation conversation = *conversationBuilder;
            ConversationKey conversationId = messageService.save(accountId, conversation);

           //Create a message Builder for sms/mms
            MessageBuilder* messageBuilder = MessageBuilder::create(accountId);
            messageBuilder->addRecipient(recipient);
            // SMS API's handle body as an attachment.
            QString body = "body of the sms";
            messageBuilder->addAttachment(Attachment("text/plain","body.txt",body));
            messageBuilder->conversationId(conversationId);
            Message message;
            message = *messageBuilder;

            //Sending SMS/MMS
            MessageKey key = messageService.send(accountId, message);
            qDebug() << "+++++++ Message sent" << endl;`
于 2013-02-27T20:29:30.237 に答える