0

我正在使用applozic api,我在文档中找不到如何将语音消息作为附件发送。

import com.applozic.mobicomkit.api.conversation.MobiComConversationService;

 public void sendMessage(Message message)        
 {             
   ...        
 }

new MobiComConversationService(activity).sendMessage(new     
Message("contact@applozic.com", "hello test"));


 public synchronized List<Message> getLatestMessagesGroupByPeople()        
 {            
  ...         
 }

 public List<Message> getMessages(String userId, Long startTime, Long endTime)        
 {            
  ...           
 }
4

1 回答 1

1

发送语音消息有两种方式:

  1. 直接方式:创建消息对象,设置要发送消息的userId,设置语音消息文件的文件路径,用户内容Type Message.ContentType.AUDIO_MSG.getValue()。

    Message message = new Message();
    message.setTo("userId");//Replace userId with user whom u want send a audio message
    List<String> filePathsList = new ArrayList<String>();
    filePathsList.add(filePath);//set the file path where the audio file is stored
    message.setFilePaths(filePathsList);
    message.setContentType(Message.ContentType.AUDIO_MSG.getValue());
    new MobiComConversationService(context).sendMessage(message);
    
  2. UI 工具包:单击附件选项图标 --> 选择音频 --> 录制语音并发送语音消息。

在此处输入图像描述

于 2016-04-12T07:23:07.060 回答