使用 applozic android 发送语音消息作为附件
send a voice message as attachment with applozic android
我正在使用 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)
{
...
}
发送语音消息有两种方式:
直接方式:
创建消息对象并设置要发送消息的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);
UI 工具包:
单击附件选项图标 --> select 音频 --> 录制语音并发送语音消息。
我正在使用 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)
{
...
}
发送语音消息有两种方式:
直接方式: 创建消息对象并设置要发送消息的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);
UI 工具包: 单击附件选项图标 --> select 音频 --> 录制语音并发送语音消息。